evm: remove CommitStateDB, journal and stateObject (#84)

* evm: remove CommitStateDB and stateObject

* imported build fixes

* lint

* rm set nonce

* update account response

* changelog
This commit is contained in:
Federico Kunze
2021-06-08 13:10:29 -04:00
committed by GitHub
parent 6eadc8fdf8
commit 0c6e44d3d3
32 changed files with 260 additions and 4250 deletions
+2 -2
View File
@@ -75,8 +75,8 @@ message QueryAccountRequest {
message QueryAccountResponse {
// balance is the balance of the EVM denomination.
string balance = 1;
// code_hash is the code bytes from the EOA.
bytes code_hash = 2;
// code hash is the hex-formatted code bytes from the EOA.
string code_hash = 2;
// nonce is the account's sequence number.
uint64 nonce = 3;
}