diff --git a/core/vm/logger_trace.go b/core/vm/logger_trace.go index c4633bde13..67102462d3 100644 --- a/core/vm/logger_trace.go +++ b/core/vm/logger_trace.go @@ -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)},