mirror of
https://github.com/ethereum/go-ethereum.git
synced 2026-07-26 22:56:43 +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)},
|
STATICCALL: {traceToAddressCode, traceLastNAddressCode(1)},
|
||||||
CREATE: {traceCreatedContractProof}, // sender's wrapped_proof is already recorded in BlockChain.writeBlockResult
|
CREATE: {traceCreatedContractProof}, // sender's wrapped_proof is already recorded in BlockChain.writeBlockResult
|
||||||
CREATE2: {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
|
SLOAD: {}, // only record state_before in `CaptureState`, instead of state_after here
|
||||||
SSTORE: {traceStorageProof}, // record state_after besides state_before
|
SSTORE: {traceStorageProof}, // record state_after besides state_before(in `CaptureState`)
|
||||||
SELFDESTRUCT: {traceContractProof, traceLastNAddressProof(0)},
|
SELFDESTRUCT: {traceContractProof, traceLastNAddressProof(0)},
|
||||||
SELFBALANCE: {traceContractProof},
|
SELFBALANCE: {traceContractProof},
|
||||||
BALANCE: {traceLastNAddressProof(0)},
|
BALANCE: {traceLastNAddressProof(0)},
|
||||||
|
|
|
||||||
Loading…
Reference in a new issue