20 lines
232 B
Rust
20 lines
232 B
Rust
|
use util::hash::*;
|
||
|
|
||
|
pub struct Env;
|
||
|
|
||
|
impl Env {
|
||
|
pub fn new() -> Env {
|
||
|
Env
|
||
|
}
|
||
|
|
||
|
pub fn sload(&self, _index: &H256) -> H256 {
|
||
|
unimplemented!();
|
||
|
}
|
||
|
|
||
|
pub fn sstore(&self, _index: &H256, _value: &H256) {
|
||
|
unimplemented!();
|
||
|
}
|
||
|
}
|
||
|
|
||
|
|