Update evm/src/extension_tower.rs

Co-authored-by: Jacqueline Nabaglo <jakub@mirprotocol.org>
This commit is contained in:
Dima V 2023-04-14 09:35:19 -07:00 committed by GitHub
parent b202196b5f
commit 9b9cd735b5
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

View File

@ -1201,7 +1201,7 @@ where
}
pub trait Stack {
fn to_stack(self) -> Vec<U256>;
fn to_stack(&self) -> Vec<U256>;
fn from_stack(stack: &[U256]) -> Self;
}