mirror of
https://github.com/ethereum/go-ethereum.git
synced 2026-07-27 07:06:42 +00:00
improve doc for OpcodeExecs (#48)
This commit is contained in:
parent
09a31ccc66
commit
f8532484a6
1 changed files with 2 additions and 2 deletions
|
|
@ -19,8 +19,8 @@ var (
|
|||
STATICCALL: {traceToAddressCode, traceLastNAddressCode(1)},
|
||||
CREATE: {traceCreatedContractProof}, // sender's wrapped_proof is already recorded in BlockChain.writeBlockResult
|
||||
CREATE2: {traceCreatedContractProof}, // sender's wrapped_proof is already recorded in BlockChain.writeBlockResult
|
||||
SLOAD: {}, // only record state_before, instead of state_after
|
||||
SSTORE: {traceStorageProof}, // record state_after besides state_before
|
||||
SLOAD: {}, // only record state_before in `CaptureState`, instead of state_after here
|
||||
SSTORE: {traceStorageProof}, // record state_after besides state_before(in `CaptureState`)
|
||||
SELFDESTRUCT: {traceContractProof, traceLastNAddressProof(0)},
|
||||
SELFBALANCE: {traceContractProof},
|
||||
BALANCE: {traceLastNAddressProof(0)},
|
||||
|
|
|
|||
Loading…
Reference in a new issue