mirror of
https://github.com/pezkuwichain/pezkuwi-subxt.git
synced 2026-06-14 02:51:08 +00:00
Fix for miscalculation of storage root (#2285)
This commit is contained in:
@@ -367,7 +367,7 @@ pub fn set_storage(key: &[u8], value: &[u8]) {
|
||||
pub fn set_child_storage(storage_key: &[u8], key: &[u8], value: &[u8]) {
|
||||
unsafe {
|
||||
ext_set_child_storage.get()(
|
||||
storage_key.as_ptr(), key.len() as u32,
|
||||
storage_key.as_ptr(), storage_key.len() as u32,
|
||||
key.as_ptr(), key.len() as u32,
|
||||
value.as_ptr(), value.len() as u32
|
||||
);
|
||||
|
||||
Reference in New Issue
Block a user