BinaryNode

Fully qualified path: alexandria_merkle_tree::storage_proof::BinaryNode

#![allow(unused)]
fn main() {
#[derive(Drop, Serde)]
pub struct BinaryNode {
    left: felt252,
    right: felt252,
}
}