diff options
author | moneromooo-monero <moneromooo-monero@users.noreply.github.com> | 2018-03-12 12:33:05 +0000 |
---|---|---|
committer | moneromooo-monero <moneromooo-monero@users.noreply.github.com> | 2018-03-16 12:07:42 +0000 |
commit | 798535149d85d2a1db9f6c21584fd43368cd3fe1 (patch) | |
tree | 56261a21c7ca6a446835c4bed84d3b52febef643 /src/wallet/api/wallet.h | |
parent | wallet2_api: add ring api (diff) | |
download | monero-798535149d85d2a1db9f6c21584fd43368cd3fe1.tar.xz |
wallet2_api: add key reuse mitigations API
Diffstat (limited to 'src/wallet/api/wallet.h')
-rw-r--r-- | src/wallet/api/wallet.h | 3 |
1 files changed, 3 insertions, 0 deletions
diff --git a/src/wallet/api/wallet.h b/src/wallet/api/wallet.h index 9d40008d1..4bde20959 100644 --- a/src/wallet/api/wallet.h +++ b/src/wallet/api/wallet.h @@ -167,6 +167,9 @@ public: virtual bool unblackballOutput(const std::string &pubkey); virtual bool getRing(const std::string &key_image, std::vector<uint64_t> &ring) const; virtual bool setRing(const std::string &key_image, const std::vector<uint64_t> &ring, bool relative); + virtual void segregatePreForkOutputs(bool segregate); + virtual void segregationHeight(uint64_t height); + virtual void keyReuseMitigation2(bool mitigation); private: void clearStatus() const; |