mirror of
https://github.com/mimblewimble/grin.git
synced 2025-01-20 19:11:08 +03:00
Bug fix for highest_index in output API. (#3200)
https://github.com/mimblewimble/grin/issues/3199
This commit is contained in:
parent
da3b3b23c6
commit
c15aedf190
1 changed files with 1 additions and 1 deletions
|
@ -298,7 +298,7 @@ impl TxHashSet {
|
|||
|
||||
/// highest output insertion index available
|
||||
pub fn highest_output_insertion_index(&self) -> u64 {
|
||||
pmmr::n_leaves(self.output_pmmr_h.last_pos)
|
||||
self.output_pmmr_h.last_pos
|
||||
}
|
||||
|
||||
/// As above, for rangeproofs
|
||||
|
|
Loading…
Reference in a new issue