diff --git a/.github/workflows/qa-rpc-integration-tests.yml b/.github/workflows/qa-rpc-integration-tests.yml index a40560ca8e8..a3a0cfd7e51 100644 --- a/.github/workflows/qa-rpc-integration-tests.yml +++ b/.github/workflows/qa-rpc-integration-tests.yml @@ -85,7 +85,11 @@ jobs: rm -rf ./mainnet/results/ # Run RPC integration test runner via http - python3 ./run_tests.py -p 8545 --continue -f --json-diff -x debug_,\ + python3 ./run_tests.py -p 8545 --continue -f --json-diff -x \ + debug_accountAt,debug_accountRange,debug_getModifiedAccountsByHash,debug_getModifiedAccountsByNumber,debug_storageRangeAt,debug_traceBlockByHash,\ + debug_traceCallMany/test_02.tar,debug_traceCallMany/test_04.tar,debug_traceCallMany/test_05.tar,debug_traceCallMany/test_06.tar,debug_traceCallMany/test_07.tar,debug_traceCallMany/test_09.json,debug_traceCallMany/test_10.tar,\ + debug_traceBlockByNumber/test_05.tar,debug_traceBlockByNumber/test_08.tar,debug_traceBlockByNumber/test_09.tar,debug_traceBlockByNumber/test_10.tar,debug_traceBlockByNumber/test_11.tar,debug_traceBlockByNumber/test_12.tar,\ + debug_traceTransaction,\ engine_exchangeCapabilities/test_1.json,\ engine_exchangeTransitionConfigurationV1/test_01.json,\ engine_getClientVersionV1/test_1.json,\ diff --git a/turbo/jsonrpc/tracing.go b/turbo/jsonrpc/tracing.go index d8cfaaae2f7..e706a29b06d 100644 --- a/turbo/jsonrpc/tracing.go +++ b/turbo/jsonrpc/tracing.go @@ -116,6 +116,7 @@ func (api *PrivateDebugAPIImpl) traceBlock(ctx context.Context, blockNrOrHash rp txns := block.Transactions() var borStateSyncTxn types.Transaction + if *config.BorTraceEnabled { borStateSyncTxHash := bortypes.ComputeBorTxHash(block.NumberU64(), block.Hash())