aboutsummaryrefslogtreecommitdiff
path: root/src/qt/walletmodel.h
diff options
context:
space:
mode:
authorJonas Schnelli <dev@jonasschnelli.ch>2016-03-17 17:54:54 +0100
committerJonas Schnelli <dev@jonasschnelli.ch>2016-04-04 09:25:34 +0200
commit8efed3bc93a15fc715fd4f3cca50f44685872b5e (patch)
treed25414acbb18118519aab29ae23e6339fc8553ff /src/qt/walletmodel.h
parentb35a59179359709df21eb026d35f4124ce90fbd1 (diff)
downloadbitcoin-8efed3bc93a15fc715fd4f3cca50f44685872b5e.tar.xz
[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 7a47eda86f..e5470bf618 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;