mirror of
https://github.com/pezkuwichain/pezkuwi-subxt.git
synced 2026-06-12 20:31:13 +00:00
Fix for miscalculation of storage root (#2285)
This commit is contained in:
@@ -297,7 +297,8 @@ where
|
||||
}
|
||||
|
||||
let mut transaction = B::Transaction::default();
|
||||
let child_storage_keys: Vec<_> = self.overlay.prospective.children.keys().cloned().collect();
|
||||
let child_storage_keys: std::collections::BTreeSet<_> = self.overlay.prospective.children.keys().cloned()
|
||||
.chain(self.overlay.committed.children.keys().cloned()).collect();
|
||||
|
||||
for key in child_storage_keys {
|
||||
let (_, t) = self.child_storage_root_transaction(&key);
|
||||
|
||||
Reference in New Issue
Block a user