diff options
| author | luigi1111 <luigi1111w@gmail.com> | 2018-06-25 14:54:54 -0500 |
|---|---|---|
| committer | luigi1111 <luigi1111w@gmail.com> | 2018-06-25 14:54:54 -0500 |
| commit | 26562e9f3c1d03e739ada2909988acd3be65e8df (patch) | |
| tree | 18346ace32a95804cc45b0f0b8a787b03b0066e4 /src | |
| parent | c3ec5373b3c61c4bf0df126473cbcec528c6d393 (diff) | |
| parent | bf26920f276555a30840a45c51e4aca33c874fbd (diff) | |
| download | monzero-core-26562e9f3c1d03e739ada2909988acd3be65e8df.tar.gz monzero-core-26562e9f3c1d03e739ada2909988acd3be65e8df.tar.xz monzero-core-26562e9f3c1d03e739ada2909988acd3be65e8df.zip | |
Merge pull request #3941
bf26920 wallet2: fix get_approximate_blockchain_height for stagenet (stoffu)
Diffstat (limited to 'src')
| -rw-r--r-- | src/wallet/wallet2.cpp | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/src/wallet/wallet2.cpp b/src/wallet/wallet2.cpp index 16ca04e3f..ac0cc96d8 100644 --- a/src/wallet/wallet2.cpp +++ b/src/wallet/wallet2.cpp @@ -9229,9 +9229,9 @@ uint64_t wallet2::get_daemon_blockchain_target_height(string &err) uint64_t wallet2::get_approximate_blockchain_height() const { // time of v2 fork - const time_t fork_time = m_nettype == TESTNET ? 1448285909 : m_nettype == STAGENET ? (time_t)-1/*TODO*/ : 1458748658; + const time_t fork_time = m_nettype == TESTNET ? 1448285909 : m_nettype == STAGENET ? 1520937818 : 1458748658; // v2 fork block - const uint64_t fork_block = m_nettype == TESTNET ? 624634 : m_nettype == STAGENET ? (uint64_t)-1/*TODO*/ : 1009827; + const uint64_t fork_block = m_nettype == TESTNET ? 624634 : m_nettype == STAGENET ? 32000 : 1009827; // avg seconds per block const int seconds_per_block = DIFFICULTY_TARGET_V2; // Calculated blockchain height |
