Commit to number of Sapling transactions instead of shielded transactions

This commit is contained in:
Jack Grigg
2020-03-04 15:33:23 +13:00
parent fc247fc898
commit cafbe61eba
4 changed files with 11 additions and 11 deletions

View File

@@ -81,6 +81,6 @@ fn leaf(height: u32) -> NodeData {
subtree_total_work: 0.into(),
start_height: height as u64,
end_height: height as u64,
shielded_tx: 5 + height as u64,
sapling_tx: 5 + height as u64,
}
}