We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 062292e commit a9d0916Copy full SHA for a9d0916
crates/primitives/src/lib.rs
@@ -90,8 +90,8 @@ pub trait Block: Debug {
90
/// Update zktrie state from trace
91
#[inline]
92
fn build_zktrie_db(&self, zktrie_db: &mut ZkMemoryDb) {
93
- for (k, bytes) in self.flatten_proofs() {
94
- zktrie_db.add_node_bytes(bytes, Some(k.as_slice())).unwrap();
+ for (_, bytes) in self.flatten_proofs() {
+ zktrie_db.add_node_bytes(bytes, None).unwrap();
95
}
96
97
0 commit comments