Skip to content

Commit

Permalink
test: fix UnimplementedHandler
Browse files Browse the repository at this point in the history
  • Loading branch information
RomarQ committed May 1, 2024
1 parent ee15955 commit da6ac37
Showing 1 changed file with 3 additions and 0 deletions.
3 changes: 3 additions & 0 deletions interpreter/tests/usability.rs
Original file line number Diff line number Diff line change
Expand Up @@ -108,6 +108,9 @@ impl RuntimeBaseBackend for UnimplementedHandler {
fn storage(&self, _address: H160, _index: H256) -> H256 {
unimplemented!()
}
fn transient_storage(&self, _address: H160, _index: H256) -> H256 {
unimplemented!()
}

fn exists(&self, _address: H160) -> bool {
unimplemented!()
Expand Down

0 comments on commit da6ac37

Please sign in to comment.