aboutsummaryrefslogtreecommitdiff
path: root/src/qt/walletmodel.h
diff options
context:
space:
mode:
authorJonas Schnelli <[email protected]>2016-03-17 17:54:54 +0100
committerJonas Schnelli <[email protected]>2016-04-04 09:25:34 +0200
commit8efed3bc93a15fc715fd4f3cca50f44685872b5e (patch)
treed25414acbb18118519aab29ae23e6339fc8553ff /src/qt/walletmodel.h
parentMerge #7558: [RPC] Add import/removeprunedfunds rpc call (diff)
downloaddiscoin-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.h3
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;