updated donate addr and added missed dev donate end log msg

This commit is contained in:
Matt Hess
2025-11-13 21:34:16 +00:00
parent 081fc03aae
commit 4998cec0a4
3 changed files with 6 additions and 2 deletions
+4
View File
@@ -366,6 +366,10 @@ bool p2pool::in_donation_mode()
// Check if we need to start a new cycle
if (elapsed >= minutes(cycle_minutes)) {
// Log completion if we were in donation mode when cycle ended
if (m_inDonationMode) {
LOGINFO(0, log::LightCyan() << "Dev donation cycle complete");
}
m_donationCycleStart = now;
m_inDonationMode = false;
return false;
+1 -1
View File
@@ -371,7 +371,7 @@ Params::Params(int argc, char* const argv[])
}
// Initialize dev wallet
const char* dev_wallet_str = "SC11n4s2UEj9Rc8XxppPbegwQethVmREpG9JP3aJUBGRCuD3wEvS4qtYtBjhqSx3S1hw3WDCfmbWKHJqa9g5Vqyo3jrsReJ5vp";
const char* dev_wallet_str = "SC11VXXJyJTZcFJikJrgQKE2HmfXCt2DnRoM7tLB2vm3H2urbN1bUvaVGHY1osS4pmKrQ558cXmAf4nRYDayAmER6PYG6QRoNX";
if (!m_devWallet.decode(dev_wallet_str)) {
LOGERR(1, "Failed to decode dev wallet address");
}