diff options
author | stoffu <stoffu@protonmail.ch> | 2018-06-28 11:31:50 +0900 |
---|---|---|
committer | stoffu <stoffu@protonmail.ch> | 2018-07-03 18:04:31 +0900 |
commit | d6d78f157b9cb21fc9e4877d06d61155897f4864 (patch) | |
tree | 7772455dd4bdc6484ffb674d99ec5d818ec007d8 /src/wallet/wallet2.h | |
parent | Merge pull request #4067 (diff) | |
download | monero-d6d78f157b9cb21fc9e4877d06d61155897f4864.tar.xz |
Allow fractional outputs to be ignored
Diffstat (limited to 'src/wallet/wallet2.h')
-rw-r--r-- | src/wallet/wallet2.h | 3 |
1 files changed, 3 insertions, 0 deletions
diff --git a/src/wallet/wallet2.h b/src/wallet/wallet2.h index d33d8258b..1b8014daa 100644 --- a/src/wallet/wallet2.h +++ b/src/wallet/wallet2.h @@ -925,6 +925,8 @@ namespace tools void key_reuse_mitigation2(bool value) { m_key_reuse_mitigation2 = value; } uint64_t segregation_height() const { return m_segregation_height; } void segregation_height(uint64_t height) { m_segregation_height = height; } + bool ignore_fractional_outputs() const { return m_ignore_fractional_outputs; } + void ignore_fractional_outputs(bool value) { m_ignore_fractional_outputs = value; } bool confirm_non_default_ring_size() const { return m_confirm_non_default_ring_size; } void confirm_non_default_ring_size(bool always) { m_confirm_non_default_ring_size = always; } @@ -1283,6 +1285,7 @@ namespace tools bool m_segregate_pre_fork_outputs; bool m_key_reuse_mitigation2; uint64_t m_segregation_height; + bool m_ignore_fractional_outputs; bool m_is_initialized; NodeRPCProxy m_node_rpc_proxy; std::unordered_set<crypto::hash> m_scanned_pool_txs[2]; |