aboutsummaryrefslogtreecommitdiff
path: root/src/interfaces/chain.h
diff options
context:
space:
mode:
authorAntoine Riard <ariard@student.42.fr>2019-04-29 10:18:50 -0400
committerAntoine Riard <ariard@student.42.fr>2019-11-06 13:36:43 -0500
commit36b68de5b2938722911db900ca299f7008780d01 (patch)
tree3791969a005bbd1c2982cb8c2a510a8975cc3b7c /src/interfaces/chain.h
parentb66c429c56c85fa16c309be0b2bca9c25fdd3e1a (diff)
downloadbitcoin-36b68de5b2938722911db900ca299f7008780d01.tar.xz
Remove getBlockDepth method from Chain::interface
Pass conflicting height in CWallet::MarkConflicted
Diffstat (limited to 'src/interfaces/chain.h')
-rw-r--r--src/interfaces/chain.h4
1 files changed, 0 insertions, 4 deletions
diff --git a/src/interfaces/chain.h b/src/interfaces/chain.h
index e07ec1b371..349af152d5 100644
--- a/src/interfaces/chain.h
+++ b/src/interfaces/chain.h
@@ -76,10 +76,6 @@ public:
//! included in the current chain.
virtual Optional<int> getBlockHeight(const uint256& hash) = 0;
- //! Get block depth. Returns 1 for chain tip, 2 for preceding block, and
- //! so on. Returns 0 for a block not included in the current chain.
- virtual int getBlockDepth(const uint256& hash) = 0;
-
//! Get block hash. Height must be valid or this function will abort.
virtual uint256 getBlockHash(int height) = 0;