diff options
author | luigi1111 <luigi1111w@gmail.com> | 2018-07-19 14:06:54 -0500 |
---|---|---|
committer | luigi1111 <luigi1111w@gmail.com> | 2018-07-19 14:06:54 -0500 |
commit | be81a27fa468556f138d2228b6a5bb7feddd26e6 (patch) | |
tree | 9162831f6e49c84053970e145e5f3ea686a6238e /src/wallet/wallet2.h | |
parent | Merge pull request #4064 (diff) | |
parent | Allow fractional outputs to be ignored (diff) | |
download | monero-be81a27fa468556f138d2228b6a5bb7feddd26e6.tar.xz |
Merge pull request #4071
d6d78f1 Allow fractional outputs to be ignored (stoffu)
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 4d22b6915..1c2ee75dd 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; } @@ -1284,6 +1286,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]; |