zink
zink copied to clipboard
Passing bytes in storage
Describe the feature
refactor the implementation of storage
impl Storage for MyStorage {
fn set(value: Self) {
value.push();
Self::STORAGE_KEY.push();
ffi::evm::sstore();
}
}
Solution
No response