diff options
| author | Jonas Schnelli <[email protected]> | 2016-03-17 17:54:54 +0100 |
|---|---|---|
| committer | Jonas Schnelli <[email protected]> | 2016-04-04 09:25:34 +0200 |
| commit | 8efed3bc93a15fc715fd4f3cca50f44685872b5e (patch) | |
| tree | d25414acbb18118519aab29ae23e6339fc8553ff /src/qt/walletmodel.h | |
| parent | Merge #7558: [RPC] Add import/removeprunedfunds rpc call (diff) | |
| download | discoin-8efed3bc93a15fc715fd4f3cca50f44685872b5e.tar.xz discoin-8efed3bc93a15fc715fd4f3cca50f44685872b5e.zip | |
[Qt] Support for abandoned/abandoning transactions
Diffstat (limited to 'src/qt/walletmodel.h')
| -rw-r--r-- | src/qt/walletmodel.h | 3 |
1 files changed, 3 insertions, 0 deletions
diff --git a/src/qt/walletmodel.h b/src/qt/walletmodel.h index 7a47eda86..e5470bf61 100644 --- a/src/qt/walletmodel.h +++ b/src/qt/walletmodel.h @@ -200,6 +200,9 @@ public: void loadReceiveRequests(std::vector<std::string>& vReceiveRequests); bool saveReceiveRequest(const std::string &sAddress, const int64_t nId, const std::string &sRequest); + bool transactionCanBeAbandoned(uint256 hash) const; + bool abandonTransaction(uint256 hash) const; + private: CWallet *wallet; bool fHaveWatchOnly; |