Skip to content

Commit

Permalink
Merge branch 'cached_rw' of github.com:iFrostizz/hypersdk into cached_rw
Browse files Browse the repository at this point in the history
apply review changes
  • Loading branch information
iFrostizz committed Apr 26, 2024
2 parents aa1ac4c + 2ff02e0 commit fb2df78
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion x/programs/rust/wasmlanche-sdk/src/state.rs
Original file line number Diff line number Diff line change
Expand Up @@ -116,7 +116,7 @@ where
self.cache.entry(key).or_insert(bytes)
};

from_slice::<V>(&val_bytes).map_err(|_| StateError::Deserialization)
from_slice::<V>(val_bytes).map_err(|_| StateError::Deserialization)
}

/// Delete a value from the hosts's storage.
Expand Down

0 comments on commit fb2df78

Please sign in to comment.