From 27f72405b22e28977f07cdfd6a326a682e8f8d41 Mon Sep 17 00:00:00 2001 From: Duke Date: Tue, 17 Sep 2024 13:11:11 -0400 Subject: [PATCH] Also print address to stderr in hush_isnotaryvout --- src/main.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/main.cpp b/src/main.cpp index 7b885f081..0a60de0c4 100644 --- a/src/main.cpp +++ b/src/main.cpp @@ -1429,7 +1429,7 @@ int32_t hush_isnotaryvout(char *coinaddr,uint32_t tiptime) { bool istush = strncmp(SMART_CHAIN_SYMBOL, "TUSH",4) == 0 ? true : false; int32_t height = chainActive.LastTip()->GetHeight(); int32_t season = (ishush3 || istush) ? gethushseason(height) : getacseason(tiptime); - fprintf(stderr,"%s: season=%d, tiptime=%d\n", __func__, season,tiptime); + fprintf(stderr,"%s: coinaddr=%s season=%d, tiptime=%d\n", __func__, coinaddr, season,tiptime); if ( NOTARY_ADDRESSES[season-1][0][0] == 0 ) { uint8_t pubkeys[64][33]; hush_notaries(pubkeys,0,tiptime);