improve doc for OpcodeExecs (#48)

This commit is contained in:
HAOYUatHZ 2022-03-21 13:10:11 +08:00 committed by GitHub
parent 09a31ccc66
commit f8532484a6
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23

View file

@ -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)},