607 lines
18 KiB
Rust
Raw Normal View History

2025-11-12 08:26:25 +02:00
use std::{
2025-12-09 11:09:15 +02:00
collections::{BTreeMap, HashMap},
2025-11-12 08:26:25 +02:00
sync::Arc,
};
2025-11-05 15:15:29 +02:00
2025-11-12 08:26:25 +02:00
use anyhow::Result;
use common::sequencer_client::SequencerClient;
2025-11-07 16:21:14 +02:00
use serde::{Deserialize, Serialize};
2025-11-06 16:50:32 +02:00
2025-11-07 16:21:14 +02:00
use crate::key_management::{
key_tree::{
chain_index::ChainIndex, keys_private::ChildKeysPrivate, keys_public::ChildKeysPublic,
traits::KeyNode,
},
secret_holders::SeedHolder,
};
2025-11-06 16:50:32 +02:00
2025-11-07 16:21:14 +02:00
pub mod chain_index;
pub mod keys_private;
pub mod keys_public;
pub mod traits;
2025-11-06 16:50:32 +02:00
2025-12-03 13:10:07 +02:00
pub const DEPTH_SOFT_CAP: u32 = 20;
2025-11-07 16:21:14 +02:00
#[derive(Debug, Serialize, Deserialize, Clone)]
2025-11-26 14:53:26 +02:00
pub struct KeyTree<N: KeyNode> {
pub key_map: BTreeMap<ChainIndex, N>,
pub account_id_map: HashMap<nssa::AccountId, ChainIndex>,
2025-11-06 16:50:32 +02:00
}
2025-11-07 16:21:14 +02:00
pub type KeyTreePublic = KeyTree<ChildKeysPublic>;
pub type KeyTreePrivate = KeyTree<ChildKeysPrivate>;
2025-11-26 14:53:26 +02:00
impl<N: KeyNode> KeyTree<N> {
2025-11-06 16:50:32 +02:00
pub fn new(seed: &SeedHolder) -> Self {
2025-11-26 14:53:26 +02:00
let seed_fit: [u8; 64] = seed
.seed
.clone()
.try_into()
.expect("SeedHolder seed is 64 bytes long");
2025-11-06 16:50:32 +02:00
2025-11-26 14:53:26 +02:00
let root_keys = N::root(seed_fit);
let account_id = root_keys.account_id();
2025-11-05 15:15:29 +02:00
let key_map = BTreeMap::from_iter([(ChainIndex::root(), root_keys)]);
let account_id_map = HashMap::from_iter([(account_id, ChainIndex::root())]);
2025-11-05 15:15:29 +02:00
Self {
key_map,
account_id_map,
}
2025-11-05 15:15:29 +02:00
}
2025-11-26 14:53:26 +02:00
pub fn new_from_root(root: N) -> Self {
let account_id_map = HashMap::from_iter([(root.account_id(), ChainIndex::root())]);
2025-11-26 14:53:26 +02:00
let key_map = BTreeMap::from_iter([(ChainIndex::root(), root)]);
2025-11-11 12:15:20 +02:00
Self {
key_map,
account_id_map,
}
2025-11-11 12:15:20 +02:00
}
// ToDo: Add function to create a tree from list of nodes with consistency check.
2025-11-11 12:15:20 +02:00
2025-11-06 16:50:32 +02:00
pub fn find_next_last_child_of_id(&self, parent_id: &ChainIndex) -> Option<u32> {
if !self.key_map.contains_key(parent_id) {
2025-11-05 15:15:29 +02:00
return None;
}
2025-11-26 07:18:25 +02:00
let leftmost_child = parent_id.nth_child(u32::MIN);
2025-11-05 15:15:29 +02:00
2025-11-06 16:50:32 +02:00
if !self.key_map.contains_key(&leftmost_child) {
2025-11-26 07:18:25 +02:00
return Some(0);
}
2025-11-26 07:18:25 +02:00
let mut right = u32::MAX - 1;
let mut left_border = u32::MIN;
let mut right_border = u32::MAX;
loop {
let rightmost_child = parent_id.nth_child(right);
let rightmost_ref = self.key_map.get(&rightmost_child);
let rightmost_ref_next = self.key_map.get(&rightmost_child.next_in_line());
match (&rightmost_ref, &rightmost_ref_next) {
(Some(_), Some(_)) => {
left_border = right;
right = (right + right_border) / 2;
}
(Some(_), None) => {
break Some(right + 1);
}
(None, None) => {
right_border = right;
right = (left_border + right) / 2;
}
(None, Some(_)) => {
unreachable!();
2025-11-05 15:15:29 +02:00
}
}
}
}
2025-12-03 13:10:07 +02:00
pub fn generate_new_node(
&mut self,
parent_cci: &ChainIndex,
) -> Option<(nssa::AccountId, ChainIndex)> {
2025-12-05 07:46:59 +02:00
let parent_keys = self.key_map.get(parent_cci)?;
2025-11-26 14:53:26 +02:00
let next_child_id = self
2025-12-03 13:10:07 +02:00
.find_next_last_child_of_id(parent_cci)
2025-11-26 14:53:26 +02:00
.expect("Can be None only if parent is not present");
2025-11-26 07:18:25 +02:00
let next_cci = parent_cci.nth_child(next_child_id);
2025-11-05 15:15:29 +02:00
2025-12-05 07:46:59 +02:00
let child_keys = parent_keys.nth_child(next_child_id);
let account_id = child_keys.account_id();
2025-11-05 15:15:29 +02:00
2025-11-06 16:50:32 +02:00
self.key_map.insert(next_cci.clone(), child_keys);
2025-12-03 13:10:07 +02:00
self.account_id_map.insert(account_id, next_cci.clone());
Some((account_id, next_cci))
}
2025-12-09 11:09:15 +02:00
fn find_next_slot_layered(&self) -> ChainIndex {
let mut depth = 1;
2025-11-05 15:15:29 +02:00
2025-12-09 11:09:15 +02:00
'outer: loop {
2025-12-09 11:51:44 +02:00
for chain_id in ChainIndex::chain_ids_at_depth_rev(depth) {
if !self.key_map.contains_key(&chain_id) {
2025-12-09 11:09:15 +02:00
break 'outer chain_id;
}
}
depth += 1;
}
2025-12-03 13:10:07 +02:00
}
2025-12-09 11:09:15 +02:00
pub fn fill_node(&mut self, chain_index: &ChainIndex) -> Option<(nssa::AccountId, ChainIndex)> {
let parent_keys = self.key_map.get(&chain_index.parent()?)?;
let child_id = *chain_index.chain().last()?;
2025-12-03 13:10:07 +02:00
2025-12-09 11:09:15 +02:00
let child_keys = parent_keys.nth_child(child_id);
let account_id = child_keys.account_id();
2025-12-03 13:10:07 +02:00
2025-12-09 11:09:15 +02:00
self.key_map.insert(chain_index.clone(), child_keys);
self.account_id_map.insert(account_id, chain_index.clone());
2025-12-03 13:10:07 +02:00
2025-12-09 11:09:15 +02:00
Some((account_id, chain_index.clone()))
2025-12-03 13:10:07 +02:00
}
2025-12-09 11:09:15 +02:00
pub fn generate_new_node_layered(&mut self) -> Option<(nssa::AccountId, ChainIndex)> {
self.fill_node(&self.find_next_slot_layered())
2025-11-05 15:15:29 +02:00
}
pub fn get_node(&self, account_id: nssa::AccountId) -> Option<&N> {
self.account_id_map
.get(&account_id)
2025-11-06 16:50:32 +02:00
.and_then(|chain_id| self.key_map.get(chain_id))
}
2025-11-10 16:29:33 +02:00
pub fn get_node_mut(&mut self, account_id: nssa::AccountId) -> Option<&mut N> {
self.account_id_map
.get(&account_id)
2025-11-10 16:29:33 +02:00
.and_then(|chain_id| self.key_map.get_mut(chain_id))
}
pub fn insert(&mut self, account_id: nssa::AccountId, chain_index: ChainIndex, node: N) {
self.account_id_map.insert(account_id, chain_index.clone());
2025-11-10 16:29:33 +02:00
self.key_map.insert(chain_index, node);
}
2025-11-11 17:25:08 +02:00
pub fn remove(&mut self, addr: nssa::AccountId) -> Option<N> {
let chain_index = self.account_id_map.remove(&addr).unwrap();
2025-11-12 08:26:25 +02:00
self.key_map.remove(&chain_index)
}
2025-12-03 07:05:23 +02:00
/// Populates tree with children.
///
/// For given `depth` adds children to a tree such that their `ChainIndex::depth(&self) <
/// depth`.
///
/// Tree must be empty before start
2025-11-11 17:25:08 +02:00
pub fn generate_tree_for_depth(&mut self, depth: u32) {
let mut id_stack = vec![ChainIndex::root()];
2025-11-12 08:26:25 +02:00
while let Some(curr_id) = id_stack.pop() {
let mut next_id = curr_id.nth_child(0);
2025-11-11 17:25:08 +02:00
2025-12-04 14:31:52 +02:00
while (next_id.depth()) < depth {
2025-12-08 12:11:11 +02:00
self.generate_new_node(&curr_id);
2025-11-12 08:26:25 +02:00
id_stack.push(next_id.clone());
next_id = next_id.next_in_line();
}
}
}
}
impl KeyTree<ChildKeysPrivate> {
2025-12-03 07:05:23 +02:00
/// Cleanup of all non-initialized accounts in a private tree
///
/// For given `depth` checks children to a tree such that their `ChainIndex::depth(&self) <
/// depth`.
///
/// If account is default, removes them.
///
/// Chain must be parsed for accounts beforehand
2025-12-08 12:11:11 +02:00
///
/// Fast, leaves gaps between accounts
pub fn cleanup_tree_remove_uninit_for_depth(&mut self, depth: u32) {
2025-11-12 08:26:25 +02:00
let mut id_stack = vec![ChainIndex::root()];
while let Some(curr_id) = id_stack.pop() {
if let Some(node) = self.key_map.get(&curr_id)
&& node.value.1 == nssa::Account::default()
&& curr_id != ChainIndex::root()
{
let addr = node.account_id();
2025-11-12 08:26:25 +02:00
self.remove(addr);
}
let mut next_id = curr_id.nth_child(0);
2025-11-12 08:26:25 +02:00
2025-12-04 14:31:52 +02:00
while (next_id.depth()) < depth {
2025-11-11 17:25:08 +02:00
id_stack.push(next_id.clone());
next_id = next_id.next_in_line();
2025-11-12 08:26:25 +02:00
}
2025-11-11 17:25:08 +02:00
}
}
2025-12-04 16:49:10 +02:00
2025-12-08 12:11:11 +02:00
/// Cleanup of non-initialized accounts in a private tree
///
/// If account is default, removes them, stops at first non-default account.
///
/// Walks through tree in lairs of same depth using `ChainIndex::chain_ids_at_depth()`
///
/// Chain must be parsed for accounts beforehand
///
/// Slow, maintains tree consistency.
pub fn cleanup_tree_remove_uninit_layered(&mut self, depth: u32) {
'outer: for i in (1..(depth as usize)).rev() {
println!("Cleanup of tree at depth {i}");
for id in ChainIndex::chain_ids_at_depth(i) {
if let Some(node) = self.key_map.get(&id) {
if node.value.1 == nssa::Account::default() {
let addr = node.account_id();
self.remove(addr);
} else {
break 'outer;
}
}
2025-12-04 16:49:10 +02:00
}
}
}
2025-11-06 16:50:32 +02:00
}
2025-11-12 08:26:25 +02:00
impl KeyTree<ChildKeysPublic> {
2025-12-03 07:05:23 +02:00
/// Cleanup of all non-initialized accounts in a public tree
///
/// For given `depth` checks children to a tree such that their `ChainIndex::depth(&self) <
/// depth`.
///
/// If account is default, removes them.
2025-12-08 12:11:11 +02:00
///
/// Fast, leaves gaps between accounts
2025-12-05 07:46:59 +02:00
pub async fn cleanup_tree_remove_ininit_for_depth(
2025-11-12 08:26:25 +02:00
&mut self,
depth: u32,
client: Arc<SequencerClient>,
) -> Result<()> {
let mut id_stack = vec![ChainIndex::root()];
while let Some(curr_id) = id_stack.pop() {
if let Some(node) = self.key_map.get(&curr_id) {
let address = node.account_id();
2025-11-12 08:26:25 +02:00
let node_acc = client.get_account(address.to_string()).await?.account;
if node_acc == nssa::Account::default() && curr_id != ChainIndex::root() {
self.remove(address);
}
}
let mut next_id = curr_id.nth_child(0);
2025-11-12 08:26:25 +02:00
2025-12-04 14:31:52 +02:00
while (next_id.depth()) < depth {
2025-11-12 08:26:25 +02:00
id_stack.push(next_id.clone());
next_id = next_id.next_in_line();
}
}
Ok(())
}
2025-12-08 12:11:11 +02:00
/// Cleanup of non-initialized accounts in a public tree
///
/// If account is default, removes them, stops at first non-default account.
///
/// Walks through tree in lairs of same depth using `ChainIndex::chain_ids_at_depth()`
///
/// Slow, maintains tree consistency.
pub async fn cleanup_tree_remove_uninit_layered(
&mut self,
depth: u32,
client: Arc<SequencerClient>,
) -> Result<()> {
'outer: for i in (1..(depth as usize)).rev() {
println!("Cleanup of tree at depth {i}");
for id in ChainIndex::chain_ids_at_depth(i) {
if let Some(node) = self.key_map.get(&id) {
let address = node.account_id();
let node_acc = client.get_account(address.to_string()).await?.account;
if node_acc == nssa::Account::default() {
let addr = node.account_id();
self.remove(addr);
} else {
break 'outer;
}
}
}
}
Ok(())
}
2025-11-12 08:26:25 +02:00
}
2025-11-06 16:50:32 +02:00
#[cfg(test)]
mod tests {
2025-12-04 16:49:10 +02:00
use std::{collections::HashSet, str::FromStr};
2025-11-07 16:21:14 +02:00
use nssa::AccountId;
2025-11-06 16:50:32 +02:00
use super::*;
fn seed_holder_for_tests() -> SeedHolder {
SeedHolder {
seed: [42; 64].to_vec(),
2025-11-05 15:15:29 +02:00
}
2025-11-06 16:50:32 +02:00
}
#[test]
fn test_simple_key_tree() {
let seed_holder = seed_holder_for_tests();
let tree = KeyTreePublic::new(&seed_holder);
assert!(tree.key_map.contains_key(&ChainIndex::root()));
assert!(tree.account_id_map.contains_key(&AccountId::new([
2025-11-06 16:50:32 +02:00
46, 223, 229, 177, 59, 18, 189, 219, 153, 31, 249, 90, 112, 230, 180, 164, 80, 25, 106,
159, 14, 238, 1, 192, 91, 8, 210, 165, 199, 41, 60, 104,
])));
}
#[test]
fn test_small_key_tree() {
let seed_holder = seed_holder_for_tests();
2025-12-04 16:49:10 +02:00
let mut tree = KeyTreePrivate::new(&seed_holder);
2025-11-06 16:50:32 +02:00
let next_last_child_for_parent_id = tree
.find_next_last_child_of_id(&ChainIndex::root())
.unwrap();
assert_eq!(next_last_child_for_parent_id, 0);
2025-12-03 13:10:07 +02:00
tree.generate_new_node(&ChainIndex::root()).unwrap();
2025-11-06 16:50:32 +02:00
assert!(
tree.key_map
2025-11-11 12:15:20 +02:00
.contains_key(&ChainIndex::from_str("/0").unwrap())
2025-11-06 16:50:32 +02:00
);
let next_last_child_for_parent_id = tree
.find_next_last_child_of_id(&ChainIndex::root())
.unwrap();
assert_eq!(next_last_child_for_parent_id, 1);
2025-12-03 13:10:07 +02:00
tree.generate_new_node(&ChainIndex::root()).unwrap();
tree.generate_new_node(&ChainIndex::root()).unwrap();
tree.generate_new_node(&ChainIndex::root()).unwrap();
tree.generate_new_node(&ChainIndex::root()).unwrap();
tree.generate_new_node(&ChainIndex::root()).unwrap();
tree.generate_new_node(&ChainIndex::root()).unwrap();
2025-11-06 16:50:32 +02:00
let next_last_child_for_parent_id = tree
.find_next_last_child_of_id(&ChainIndex::root())
.unwrap();
assert_eq!(next_last_child_for_parent_id, 7);
}
#[test]
fn test_key_tree_can_not_make_child_keys() {
let seed_holder = seed_holder_for_tests();
2025-12-04 16:49:10 +02:00
let mut tree = KeyTreePrivate::new(&seed_holder);
2025-11-06 16:50:32 +02:00
let next_last_child_for_parent_id = tree
.find_next_last_child_of_id(&ChainIndex::root())
.unwrap();
assert_eq!(next_last_child_for_parent_id, 0);
2025-12-03 13:10:07 +02:00
tree.generate_new_node(&ChainIndex::root()).unwrap();
2025-11-06 16:50:32 +02:00
assert!(
tree.key_map
2025-11-11 12:15:20 +02:00
.contains_key(&ChainIndex::from_str("/0").unwrap())
2025-11-06 16:50:32 +02:00
);
let next_last_child_for_parent_id = tree
.find_next_last_child_of_id(&ChainIndex::root())
.unwrap();
assert_eq!(next_last_child_for_parent_id, 1);
2025-12-03 13:10:07 +02:00
let key_opt = tree.generate_new_node(&ChainIndex::from_str("/3").unwrap());
2025-11-06 16:50:32 +02:00
assert_eq!(key_opt, None);
}
#[test]
fn test_key_tree_complex_structure() {
let seed_holder = seed_holder_for_tests();
let mut tree = KeyTreePublic::new(&seed_holder);
let next_last_child_for_parent_id = tree
.find_next_last_child_of_id(&ChainIndex::root())
.unwrap();
assert_eq!(next_last_child_for_parent_id, 0);
2025-12-03 13:10:07 +02:00
tree.generate_new_node(&ChainIndex::root()).unwrap();
2025-11-06 16:50:32 +02:00
assert!(
tree.key_map
2025-11-11 12:15:20 +02:00
.contains_key(&ChainIndex::from_str("/0").unwrap())
2025-11-06 16:50:32 +02:00
);
let next_last_child_for_parent_id = tree
.find_next_last_child_of_id(&ChainIndex::root())
.unwrap();
assert_eq!(next_last_child_for_parent_id, 1);
2025-12-03 13:10:07 +02:00
tree.generate_new_node(&ChainIndex::root()).unwrap();
2025-11-06 16:50:32 +02:00
assert!(
tree.key_map
2025-11-11 12:15:20 +02:00
.contains_key(&ChainIndex::from_str("/1").unwrap())
2025-11-06 16:50:32 +02:00
);
let next_last_child_for_parent_id = tree
.find_next_last_child_of_id(&ChainIndex::root())
.unwrap();
assert_eq!(next_last_child_for_parent_id, 2);
2025-12-03 13:10:07 +02:00
tree.generate_new_node(&ChainIndex::from_str("/0").unwrap())
2025-11-06 16:50:32 +02:00
.unwrap();
let next_last_child_for_parent_id = tree
2025-11-11 12:15:20 +02:00
.find_next_last_child_of_id(&ChainIndex::from_str("/0").unwrap())
2025-11-06 16:50:32 +02:00
.unwrap();
assert_eq!(next_last_child_for_parent_id, 1);
assert!(
tree.key_map
2025-11-11 12:15:20 +02:00
.contains_key(&ChainIndex::from_str("/0/0").unwrap())
2025-11-06 16:50:32 +02:00
);
2025-12-03 13:10:07 +02:00
tree.generate_new_node(&ChainIndex::from_str("/0").unwrap())
2025-11-06 16:50:32 +02:00
.unwrap();
let next_last_child_for_parent_id = tree
2025-11-11 12:15:20 +02:00
.find_next_last_child_of_id(&ChainIndex::from_str("/0").unwrap())
2025-11-06 16:50:32 +02:00
.unwrap();
assert_eq!(next_last_child_for_parent_id, 2);
assert!(
tree.key_map
2025-11-11 12:15:20 +02:00
.contains_key(&ChainIndex::from_str("/0/1").unwrap())
2025-11-06 16:50:32 +02:00
);
2025-12-03 13:10:07 +02:00
tree.generate_new_node(&ChainIndex::from_str("/0").unwrap())
2025-11-06 16:50:32 +02:00
.unwrap();
let next_last_child_for_parent_id = tree
2025-11-11 12:15:20 +02:00
.find_next_last_child_of_id(&ChainIndex::from_str("/0").unwrap())
2025-11-06 16:50:32 +02:00
.unwrap();
assert_eq!(next_last_child_for_parent_id, 3);
assert!(
tree.key_map
2025-11-11 12:15:20 +02:00
.contains_key(&ChainIndex::from_str("/0/2").unwrap())
2025-11-06 16:50:32 +02:00
);
2025-12-03 13:10:07 +02:00
tree.generate_new_node(&ChainIndex::from_str("/0/1").unwrap())
2025-11-06 16:50:32 +02:00
.unwrap();
assert!(
tree.key_map
2025-11-11 12:15:20 +02:00
.contains_key(&ChainIndex::from_str("/0/1/0").unwrap())
2025-11-06 16:50:32 +02:00
);
let next_last_child_for_parent_id = tree
2025-11-11 12:15:20 +02:00
.find_next_last_child_of_id(&ChainIndex::from_str("/0/1").unwrap())
2025-11-06 16:50:32 +02:00
.unwrap();
2025-11-05 15:15:29 +02:00
2025-11-06 16:50:32 +02:00
assert_eq!(next_last_child_for_parent_id, 1);
2025-11-05 15:15:29 +02:00
}
2025-12-03 13:10:07 +02:00
#[test]
fn test_tree_balancing_automatic() {
let seed_holder = seed_holder_for_tests();
let mut tree = KeyTreePublic::new(&seed_holder);
2025-12-09 11:51:44 +02:00
for _ in 0..100 {
tree.generate_new_node_layered().unwrap();
}
2025-12-03 13:10:07 +02:00
2025-12-09 11:51:44 +02:00
let next_slot = tree.find_next_slot_layered();
2025-12-03 13:10:07 +02:00
2025-12-09 11:51:44 +02:00
assert_eq!(next_slot, ChainIndex::from_str("/0/0/2/1").unwrap());
2025-12-03 13:10:07 +02:00
}
2025-12-04 16:49:10 +02:00
#[test]
fn test_cleanup() {
let seed_holder = seed_holder_for_tests();
2025-12-04 14:31:52 +02:00
2025-12-04 16:49:10 +02:00
let mut tree = KeyTreePrivate::new(&seed_holder);
tree.generate_tree_for_depth(10);
2025-12-04 14:31:52 +02:00
2025-12-04 16:49:10 +02:00
let acc = tree
2025-12-04 14:31:52 +02:00
.key_map
2025-12-04 16:49:10 +02:00
.get_mut(&ChainIndex::from_str("/1").unwrap())
2025-12-04 14:31:52 +02:00
.unwrap();
2025-12-04 16:49:10 +02:00
acc.value.1.balance = 2;
2025-12-04 14:31:52 +02:00
2025-12-04 16:49:10 +02:00
let acc = tree
.key_map
.get_mut(&ChainIndex::from_str("/2").unwrap())
.unwrap();
acc.value.1.balance = 3;
2025-12-04 14:31:52 +02:00
2025-12-04 16:49:10 +02:00
let acc = tree
.key_map
.get_mut(&ChainIndex::from_str("/0/1").unwrap())
.unwrap();
acc.value.1.balance = 5;
2025-12-04 14:31:52 +02:00
2025-12-04 16:49:10 +02:00
let acc = tree
.key_map
.get_mut(&ChainIndex::from_str("/1/0").unwrap())
2025-12-04 14:31:52 +02:00
.unwrap();
2025-12-04 16:49:10 +02:00
acc.value.1.balance = 6;
2025-12-04 14:31:52 +02:00
2025-12-08 12:11:11 +02:00
tree.cleanup_tree_remove_uninit_layered(10);
2025-12-04 14:31:52 +02:00
2025-12-04 16:49:10 +02:00
let mut key_set_res = HashSet::new();
key_set_res.insert("/0".to_string());
key_set_res.insert("/1".to_string());
key_set_res.insert("/2".to_string());
key_set_res.insert("/".to_string());
key_set_res.insert("/0/0".to_string());
key_set_res.insert("/0/1".to_string());
key_set_res.insert("/1/0".to_string());
2025-12-04 14:31:52 +02:00
2025-12-04 16:49:10 +02:00
let mut key_set = HashSet::new();
2025-12-04 14:31:52 +02:00
2025-12-04 16:49:10 +02:00
for key in tree.key_map.keys() {
key_set.insert(key.to_string());
}
2025-12-04 14:31:52 +02:00
2025-12-04 16:49:10 +02:00
assert_eq!(key_set, key_set_res);
2025-12-04 14:31:52 +02:00
2025-12-04 16:49:10 +02:00
let acc = tree
.key_map
.get(&ChainIndex::from_str("/1").unwrap())
.unwrap();
assert_eq!(acc.value.1.balance, 2);
2025-12-04 14:31:52 +02:00
2025-12-04 16:49:10 +02:00
let acc = tree
.key_map
.get(&ChainIndex::from_str("/2").unwrap())
.unwrap();
assert_eq!(acc.value.1.balance, 3);
2025-12-04 14:31:52 +02:00
2025-12-04 16:49:10 +02:00
let acc = tree
.key_map
.get(&ChainIndex::from_str("/0/1").unwrap())
.unwrap();
assert_eq!(acc.value.1.balance, 5);
let acc = tree
.key_map
.get(&ChainIndex::from_str("/1/0").unwrap())
.unwrap();
assert_eq!(acc.value.1.balance, 6);
2025-12-04 14:31:52 +02:00
}
2025-11-05 15:15:29 +02:00
}