diff options
author | luigi1111 <luigi1111w@gmail.com> | 2021-01-15 23:44:32 -0500 |
---|---|---|
committer | luigi1111 <luigi1111w@gmail.com> | 2021-01-15 23:44:32 -0500 |
commit | d01f31460ed3dbabc5f41da0e143225580a4c966 (patch) | |
tree | 8836b8ff414ec85874a458f0024ba2c56e73e871 /src/wallet | |
parent | Merge pull request #7112 (diff) | |
parent | simplewallet: don't complain about connecting to the daemon when offline (diff) | |
download | monero-d01f31460ed3dbabc5f41da0e143225580a4c966.tar.xz |
Merge pull request #7113
7f30c49 simplewallet: don't complain about connecting to the daemon when offline (moneromooo-monero)
Diffstat (limited to 'src/wallet')
-rw-r--r-- | src/wallet/wallet2.h | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/src/wallet/wallet2.h b/src/wallet/wallet2.h index 68f03db72..2e455c40c 100644 --- a/src/wallet/wallet2.h +++ b/src/wallet/wallet2.h @@ -1549,6 +1549,7 @@ private: void finish_rescan_bc_keep_key_images(uint64_t transfer_height, const crypto::hash &hash); void enable_dns(bool enable) { m_use_dns = enable; } void set_offline(bool offline = true); + bool is_offline() const { return m_offline; } uint64_t credits() const { return m_rpc_payment_state.credits; } void credit_report(uint64_t &expected_spent, uint64_t &discrepancy) const { expected_spent = m_rpc_payment_state.expected_spent; discrepancy = m_rpc_payment_state.discrepancy; } |