From a67a0f89c71fb6960ccc6a059eb8ac205db052ac Mon Sep 17 00:00:00 2001 From: jamescowens Date: Sat, 17 Apr 2021 22:08:28 -0400 Subject: [PATCH] Change Beacon Rain Address to Beacon Address --- src/gridcoin/researcher.cpp | 10 +++++----- 1 file changed, 5 insertions(+), 5 deletions(-) diff --git a/src/gridcoin/researcher.cpp b/src/gridcoin/researcher.cpp index d895fc2f46..4f131115c6 100644 --- a/src/gridcoin/researcher.cpp +++ b/src/gridcoin/researcher.cpp @@ -659,12 +659,12 @@ AdvertiseBeaconResult GenerateBeaconKey(const Cpid& cpid) return BeaconError::MISSING_KEY; } - // Since the network-wide rain feature outputs GRC to beacon public key - // addresses, we describe this key as the participant's rain address to - // help identify transactions in the GUI: - // + // We label this key in the GUI to indicate to the user that it is a beacon key. + // The block number is also included because there are situations where there + // could be multiple beacon keys in the wallet due to expiration or forced re- + // advertisement. const std::string address_label = strprintf( - "Beacon Rain Address for CPID %s (at %" PRIu64 ")", + "Beacon Address for CPID %s (at %" PRIu64 ")", cpid.ToString(), static_cast(nBestHeight));