wallet: no need for duplicate storage for ABANDON_HASH constant

This commit is contained in:
Anthony Towns 2020-09-26 16:41:10 +10:00
parent 82cf4641f4
commit 4cc7171c98
2 changed files with 1 additions and 3 deletions

View file

@ -324,8 +324,6 @@ std::shared_ptr<CWallet> CreateWallet(interfaces::Chain& chain, const std::strin
return wallet;
}
const uint256 CWalletTx::ABANDON_HASH(uint256::ONE);
/** @defgroup mapWallet
*
* @{

View file

@ -275,7 +275,7 @@ private:
/** Constant used in hashBlock to indicate tx has been abandoned, only used at
* serialization/deserialization to avoid ambiguity with conflicted.
*/
static const uint256 ABANDON_HASH;
static constexpr const uint256& ABANDON_HASH = uint256::ONE;
public:
/**