()
| 7 | |
| 8 | impl WorldState { |
| 9 | pub(crate) fn new() -> Self { |
| 10 | WorldState { |
| 11 | state_trie: H256::zero(), |
| 12 | } |
| 13 | } |
| 14 | |
| 15 | pub(crate) fn update_state_trie(&mut self, hash: H256) { |
| 16 | self.state_trie = hash; |
nothing calls this directly
no outgoing calls
no test coverage detected