diff options
| author | moneromooo-monero <moneromooo-monero@users.noreply.github.com> | 2020-12-31 21:12:30 +0000 |
|---|---|---|
| committer | moneromooo-monero <moneromooo-monero@users.noreply.github.com> | 2020-12-31 23:33:18 +0000 |
| commit | 0aa541b3617563d41644e7d0beeb8e4e8325fd6d (patch) | |
| tree | 0980ba990f9a6b4eaf6136e200cb4b3ed8034f36 /src/cryptonote_core/cryptonote_core.h | |
| parent | a1eca8ca7e595f33a44cd77ac1759b2fd9f97a7d (diff) | |
| download | monzero-core-0aa541b3617563d41644e7d0beeb8e4e8325fd6d.tar.gz monzero-core-0aa541b3617563d41644e7d0beeb8e4e8325fd6d.tar.xz monzero-core-0aa541b3617563d41644e7d0beeb8e4e8325fd6d.zip | |
protocol: more sanity checks in new chain block hashes
Diffstat (limited to 'src/cryptonote_core/cryptonote_core.h')
| -rw-r--r-- | src/cryptonote_core/cryptonote_core.h | 5 |
1 files changed, 4 insertions, 1 deletions
diff --git a/src/cryptonote_core/cryptonote_core.h b/src/cryptonote_core/cryptonote_core.h index 24d0f9e76..8891540a9 100644 --- a/src/cryptonote_core/cryptonote_core.h +++ b/src/cryptonote_core/cryptonote_core.h @@ -55,6 +55,8 @@ PUSH_WARNINGS DISABLE_VS_WARNINGS(4355) +enum { HAVE_BLOCK_MAIN_CHAIN, HAVE_BLOCK_ALT_CHAIN, HAVE_BLOCK_INVALID }; + namespace cryptonote { struct test_options { @@ -543,7 +545,8 @@ namespace cryptonote * * @note see Blockchain::have_block */ - bool have_block(const crypto::hash& id) const; + bool have_block_unlocked(const crypto::hash& id, int *where = NULL) const; + bool have_block(const crypto::hash& id, int *where = NULL) const; /** * @copydoc Blockchain::get_short_chain_history |
