Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

adds support to debug_traceBatchByNumber #2217

Closed
wants to merge 42 commits into from
Closed
Changes from 1 commit
Commits
Show all changes
42 commits
Select commit Hold shift + click to select a range
ef1d6c1
Hotfix/sync2 (#1424)
arnaubennassar Nov 28, 2022
b37e38b
add wait txs methods to state (#1426)
ToniRamirezM Nov 29, 2022
c26f089
Fix/main (#2125)
ARR552 May 25, 2023
ac3664d
Merge develop into main (#2126)
ARR552 May 25, 2023
d1b0d47
Hotfix/v0.1.1 (#2152)
ARR552 Jun 1, 2023
c3d0bd4
fix trace, forced batches, decodeTxs overflow, grpc limit #2140
tclemos Jun 6, 2023
d86eb70
fix concurrent web socket writes
tclemos Jun 7, 2023
d815237
fix eth_syncing
tclemos Jun 8, 2023
cc8aac8
fix custom trace internal tx call error handling and update prover
tclemos Jun 8, 2023
a0a1196
add test to custom tracer depth issue; fix internal call error and ga…
tclemos Jun 8, 2023
0adbad4
fix custom tracer for internal tx with error and no more steps after it
tclemos Jun 8, 2023
e4cd9c1
remove debug code
tclemos Jun 8, 2023
489d0ae
Make max grpc message size configurable (#2179)
ToniRamirezM Jun 9, 2023
8f964cb
get SequencerNodeURI from SC if empty and not IsTrustedSequencer
agnusmor Jun 9, 2023
20e172d
Merge pull request #2182 from 0xPolygonHermez/hotfix/sequencer-node-uri
agnusmor Jun 12, 2023
4a311d5
Optimize trace (#2183)
ToniRamirezM Jun 13, 2023
4ef3d75
move log for the best fitting tx (#2192)
agnusmor Jun 14, 2023
6d0fe2d
fix load zkCounters from pool
agnusmor Jun 20, 2023
3b411fa
remove unnecessary log.info
agnusmor Jun 20, 2023
906bdef
Merge pull request #2210 from 0xPolygonHermez/hotfix/fix-load-zkcounters
agnusmor Jun 21, 2023
a29d721
add custom tracer support to CREATES opcode without depth increase (#…
tclemos Jun 21, 2023
0b33b87
logs
ARR552 Jun 21, 2023
860f0e7
fix getting stateroot from previous batch (GetWIPBatch)
agnusmor Jun 21, 2023
d95af12
logs
ARR552 Jun 21, 2023
40ca563
Fix GetWipBatch when previous last batch is a forced batch
agnusmor Jun 21, 2023
530c1f6
fix forcedBatch trusted state
ARR552 Jun 22, 2023
62dfab1
Revert "fix getting stateroot from previous batch (GetWIPBatch)"
agnusmor Jun 21, 2023
c6a2654
force GHA
ARR552 Jun 22, 2023
6538e3b
Merge pull request #2214 from 0xPolygonHermez/hotfix/get-wip-batch-fb
agnusmor Jun 22, 2023
69fef3f
Merge pull request #2216 from 0xPolygonHermez/hotfix/forced_batch
agnusmor Jun 22, 2023
a074a48
add pool limits (#2189)
tclemos Jun 22, 2023
67edd84
adds support to debug_traceBatchByNumber
tclemos Jun 22, 2023
3949e6e
fix default rpcURL scheme
agnusmor Jun 23, 2023
36fec82
changes to traceByBatch: better error handling, better http scheme de…
tclemos Jun 23, 2023
ef81ab0
force https to remote jRPC
tclemos Jun 23, 2023
f88d05a
replace external RPC calls to internal calls
tclemos Jun 27, 2023
19f0ac8
Merge branch 'develop' into feature/hotfix/v0.1.X/debug_traceByBatchN…
tclemos Aug 22, 2023
e50a489
revert unecessary changes
tclemos Aug 22, 2023
c2c90ce
revert unecessary changes
tclemos Aug 22, 2023
50b0fb3
revert unecessary changes
tclemos Aug 22, 2023
ba65dd7
review service comment
tclemos Aug 22, 2023
16e2405
fix get batch by number not found returned error
tclemos Aug 22, 2023
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Prev Previous commit
Next Next commit
remove unnecessary log.info
  • Loading branch information
agnusmor committed Jun 20, 2023
commit 3b411fa25896abb5fb7027901597f0ac5cbac7ac
3 changes: 0 additions & 3 deletions pool/pgpoolstorage/pgpoolstorage.go
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,6 @@ import (

"github.com/0xPolygonHermez/zkevm-node/db"
"github.com/0xPolygonHermez/zkevm-node/hex"
"github.com/0xPolygonHermez/zkevm-node/log"
"github.com/0xPolygonHermez/zkevm-node/pool"
"github.com/0xPolygonHermez/zkevm-node/state"
"github.com/ethereum/go-ethereum/common"
Expand Down Expand Up @@ -637,8 +636,6 @@ func scanTx(rows pgx.Rows) (*pool.Transaction, error) {
tx.ZKCounters.UsedSteps = usedSteps
tx.FailedReason = failedReason

log.Infof("ZKCounters", tx.ZKCounters)

return tx, nil
}

Expand Down