From 8ee1baa349e7a045fd6d2be6e38e2c1affd9f995 Mon Sep 17 00:00:00 2001 From: Standard Nguyen <117138558+standardnguyen@users.noreply.github.com> Date: Sun, 27 Apr 2025 22:22:35 -0600 Subject: [PATCH] Add end time display when search completes --- Vanity.cpp | 5 ++++- 1 file changed, 4 insertions(+), 1 deletion(-) diff --git a/Vanity.cpp b/Vanity.cpp index e7ad0d7..5f26268 100644 --- a/Vanity.cpp +++ b/Vanity.cpp @@ -1764,7 +1764,10 @@ void VanitySearch::Search(int nbThread,std::vector gpuId,std::vector g t0 = t1; } - + char *ctimeBuff; + time_t now = time(NULL); + ctimeBuff = ctime(&now); + printf("End %s", ctimeBuff); free(params); }