diff options
| author | moneromooo-monero <moneromooo-monero@users.noreply.github.com> | 2017-02-27 17:38:05 +0000 |
|---|---|---|
| committer | moneromooo-monero <moneromooo-monero@users.noreply.github.com> | 2017-02-27 17:46:55 +0000 |
| commit | b5c74e40416610ad3fdd9047bcffd406ea1067b5 (patch) | |
| tree | 7fd9f55019ee6b4a1427037e14c5b566e3359874 /src/wallet/node_rpc_proxy.cpp | |
| parent | beee286c7b08308f3193e7d2cb8d66f0e689da28 (diff) | |
| download | monzero-core-b5c74e40416610ad3fdd9047bcffd406ea1067b5.tar.gz monzero-core-b5c74e40416610ad3fdd9047bcffd406ea1067b5.tar.xz monzero-core-b5c74e40416610ad3fdd9047bcffd406ea1067b5.zip | |
wallet: invalidate node proxy cache when reconnecting
Diffstat (limited to 'src/wallet/node_rpc_proxy.cpp')
| -rw-r--r-- | src/wallet/node_rpc_proxy.cpp | 11 |
1 files changed, 11 insertions, 0 deletions
diff --git a/src/wallet/node_rpc_proxy.cpp b/src/wallet/node_rpc_proxy.cpp index cc249b5cc..9c16c7dd2 100644 --- a/src/wallet/node_rpc_proxy.cpp +++ b/src/wallet/node_rpc_proxy.cpp @@ -47,6 +47,17 @@ NodeRPCProxy::NodeRPCProxy(epee::net_utils::http::http_simple_client &http_clien , m_dynamic_per_kb_fee_estimate_grace_blocks(0) {} +void NodeRPCProxy::invalidate() +{ + m_height = 0; + m_height_time = 0; + for (size_t n = 0; n < 256; ++n) + m_earliest_height[n] = 0; + m_dynamic_per_kb_fee_estimate = 0; + m_dynamic_per_kb_fee_estimate_cached_height = 0; + m_dynamic_per_kb_fee_estimate_grace_blocks = 0; +} + boost::optional<std::string> NodeRPCProxy::get_height(uint64_t &height) { const time_t now = time(NULL); |
