Merge pull request #50 from tamasblummer/get_tip_height
[Trivial] add get_best_tip_height to blokchain
This commit is contained in:
commit
10d6aba269
|
@ -535,6 +535,11 @@ impl Blockchain {
|
||||||
unsafe { &(*self.best_tip).block }
|
unsafe { &(*self.best_tip).block }
|
||||||
}
|
}
|
||||||
|
|
||||||
|
/// Returns the best tip height
|
||||||
|
pub fn best_tip_height(&self) -> u32 {
|
||||||
|
unsafe { (*self.best_tip).height }
|
||||||
|
}
|
||||||
|
|
||||||
/// Returns the best tip's blockhash
|
/// Returns the best tip's blockhash
|
||||||
pub fn best_tip_hash(&self) -> Sha256dHash {
|
pub fn best_tip_hash(&self) -> Sha256dHash {
|
||||||
self.best_hash
|
self.best_hash
|
||||||
|
|
Loading…
Reference in New Issue