We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 5b4b8f7 commit 7482b6fCopy full SHA for 7482b6f
src/wallet/transaction.h
@@ -296,6 +296,7 @@ class CWalletTx
296
bool isUnconfirmed() const { return !isAbandoned() && !isConflicted() && !isConfirmed(); }
297
bool isConfirmed() const { return state<TxStateConfirmed>(); }
298
const uint256& GetHash() const { return tx->GetHash(); }
299
+ const uint256& GetWitnessHash() const { return tx->GetWitnessHash(); }
300
bool IsCoinBase() const { return tx->IsCoinBase(); }
301
302
// Disable copying of CWalletTx objects to prevent bugs where instances get
0 commit comments