Skip to content

Commit

Permalink
move legend
Browse files Browse the repository at this point in the history
  • Loading branch information
darioush committed Dec 27, 2024
1 parent 63135e7 commit 3643deb
Showing 1 changed file with 2 additions and 1 deletion.
3 changes: 2 additions & 1 deletion plugin/evm/post_processing_test.go
Original file line number Diff line number Diff line change
Expand Up @@ -31,6 +31,7 @@ func TestPostProcess(t *testing.T) {

var sum totals
fm := &fileManager{dir: tapeDir, newEach: 10_000}
t.Logf("(txs, atomic, readsA, readsS, writeA, writeS, upA, upS, delA, delS, sizeA, sizeS)")
for i := start; i <= end; i++ {
r := fm.GetReaderFor(i)

Expand Down Expand Up @@ -109,7 +110,7 @@ func TestPostProcess(t *testing.T) {
sum.accounts += uint64(int(accountWrites) - accountUpdates - 2*accountDeletes)
sum.storage += uint64(int(storageWrites) - storageUpdates - 2*storageDeletes)

t.Logf("Block[%d:%s]: (txs, atomic, readsA, readsS, writeA, writeS, upA, upS, delA, delS, sizeA, sizeS) = (%d, %d, %d, %d, %d, %d, %d, %d, %d, %d, %d, %d)",
t.Logf("Block[%d:%s]: (%d, %d, %d, %d, %d, %d, %d, %d, %d, %d, %d, %d)",
blockNumber, blockHash.TerminalString(),
sum.txs, sum.atomicTxs,
sum.accountReads, sum.storageReads, sum.accountWrites, sum.storageWrites,
Expand Down

0 comments on commit 3643deb

Please sign in to comment.