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

Merge zkevm-2.60 to zkevm #1293

Merged
merged 3,473 commits into from
Oct 9, 2024
Merged

Merge zkevm-2.60 to zkevm #1293

merged 3,473 commits into from
Oct 9, 2024
This pull request is big! We’re only showing the most recent 250 commits.

Commits on Apr 20, 2024

  1. mdbx: Batch() (erigontech#9999)

    This task is mostly implemented to be used in
    `erigon/erigon-lib/downloader/mdbx_piece_completion.go` and maybe in
    `nodesDB` (where we need many parallel RwTx)
    
    I was agains adding this "trick"/"api" last years, because thought that
    we can implement our App to be more 1-big-rwtx-friendly. And we did it
    in Erigon - StagedSync. TxPool also did, but with a bit less happy face
    - by "map+mutex with periodic flush to db". But `anacrolix/torrent` is
    external library and unlikely will survive such big mind-model-change.
    Maybe it's time to add `db.Batch()`.
    
    #### Batch Rw transactions
    
    Each `DB.Update()` waits for disk to commit the writes. This overhead
    can be minimized by combining multiple updates with the `DB.Batch()`
    function:
    
    ```go
    err := db.Batch(func(tx *bolt.Tx) error {
    	...
    	return nil
    })
    ```
    
    Concurrent Batch calls are opportunistically combined into larger
    transactions. Batch is only useful when there are multiple goroutines
    calling it.
    
    The trade-off is that `Batch` can call the given
    function multiple times, if parts of the transaction fail. The
    function must be idempotent and side effects must take effect only
    after a successful return from `DB.Batch()`.
    
    For example: don't display messages from inside the function, instead
    set variables in the enclosing scope:
    
    ```go
    var id uint64
    err := db.Batch(func(tx *bolt.Tx) error {
    	// Find last key in bucket, decode as bigendian uint64, increment
    	// by one, encode back to []byte, and add new key.
    	...
    	id = newValue
    	return nil
    })
    if err != nil {
    	return ...
    }
    fmt.Println("Allocated ID %d", id)
    ```
    
    
    ---- 
    
    Implementation mostly taken from
    https://github.com/etcd-io/bbolt/?tab=readme-ov-file#batch-read-write-transactions
    
    Maybe in future can push-down it to
    https://github.com/erigontech/mdbx-go
    AskAlexSharov authored Apr 20, 2024
    Configuration menu
    Copy the full SHA
    122f9f8 View commit details
    Browse the repository at this point in the history
  2. Configuration menu
    Copy the full SHA
    86dd0e5 View commit details
    Browse the repository at this point in the history

Commits on Apr 21, 2024

  1. Caplin: indexing to use right buf size (erigontech#9998)

    - PutUvarint can produce 10 bytes
    - re-using buffer - faster and less gc
    AskAlexSharov authored Apr 21, 2024
    Configuration menu
    Copy the full SHA
    54a1609 View commit details
    Browse the repository at this point in the history
  2. First round of fixes in making gossip publishing good for the validat…

    …or: See comment (erigontech#9972)
    
    * Fixed and simplified unaggregated bits check.
    * There are 2 bits on, one for the attester and one for the
    End-of-bitlist, needed to account for end of bitlist bit
     * Wrong publishing topic for sync_committee_ messages
    * Added more Ignore by receiving specific errors to avoid forwarding
    useless data.
     * Replaced `validateAttestation` with full message processing
     * Fixed forwarding of sync committee aggregates
     * Fixed subnet announcements
    
    ---------
    
    Co-authored-by: kewei <[email protected]>
    Giulio2002 and domiwei authored Apr 21, 2024
    Configuration menu
    Copy the full SHA
    596d54d View commit details
    Browse the repository at this point in the history

Commits on Apr 22, 2024

  1. Downloader: atomic-fs to be less smart. if app called - Create() - do…

    …n't check .lock. Otherwise can't create .torrent for existing .seg files. (erigontech#10004)
    AskAlexSharov authored Apr 22, 2024
    Configuration menu
    Copy the full SHA
    3f7cf91 View commit details
    Browse the repository at this point in the history
  2. Implement the optional output field on ots_traceTransaction (erigonte…

    …ch#10014)
    
    This is for E2.
    
    It implements the backward compatible output field for traces on
    ots_traceTransaction: otterscan/execution-apis#1
    
    It'll be consumed by Otterscan in an upcoming release of this feature:
    otterscan/otterscan#1530
    wmitsuda authored Apr 22, 2024
    Configuration menu
    Copy the full SHA
    34e8d35 View commit details
    Browse the repository at this point in the history
  3. Configuration menu
    Copy the full SHA
    80513aa View commit details
    Browse the repository at this point in the history
  4. re-gen mock files (erigontech#10007)

    there was error:
    ```
    prog.go:12:2: missing go.sum entry for module providing package github.com/golang/mock/mockgen/model; to add:
    	go mod download github.com/golang/mock
    ```
    AskAlexSharov authored Apr 22, 2024
    Configuration menu
    Copy the full SHA
    addda2e View commit details
    Browse the repository at this point in the history
  5. Configuration menu
    Copy the full SHA
    3af5c35 View commit details
    Browse the repository at this point in the history
  6. chain-config: capital IsOsaka (erigontech#9989)

    To Follow suit with rest of the naming
    somnathb1 authored Apr 22, 2024
    Configuration menu
    Copy the full SHA
    be8e4e6 View commit details
    Browse the repository at this point in the history
  7. move more services out from ForkchoiceStore (erigontech#9981)

    - voluntary_exit
    - bls_to_execution_change
    - proposer_slashing
    - expirable lru
    
    ---------
    
    Co-authored-by: Giulio <[email protected]>
    domiwei and Giulio2002 authored Apr 22, 2024
    Configuration menu
    Copy the full SHA
    991230e View commit details
    Browse the repository at this point in the history
  8. WP - dvovk/diagnostics downloader print (erigontech#10000)

    Added command which prints to console diagnostics data. In this initial
    version it is possible to print stages list and snapshot download
    progress. Erigon should be running with --metrics flag
    There are two available commands:
    - "downloader"
    - "stages" "current"
    There are two possible options for output: text and json
    Run command - ./build/bin/diag [command] [text | json]
    
    ---------
    
    Co-authored-by: Mark Holt <[email protected]>
    dvovk and mh0lt authored Apr 22, 2024
    Configuration menu
    Copy the full SHA
    8f0582b View commit details
    Browse the repository at this point in the history
  9. Configuration menu
    Copy the full SHA
    ab361e4 View commit details
    Browse the repository at this point in the history

Commits on Apr 23, 2024

  1. Configuration menu
    Copy the full SHA
    2b8f669 View commit details
    Browse the repository at this point in the history
  2. Added body close on retry for downloader round trip (erigontech#10008)

    Add missing body close method when webseed roundtrip is retried
    mh0lt authored Apr 23, 2024
    Configuration menu
    Copy the full SHA
    49e39ab View commit details
    Browse the repository at this point in the history
  3. Set block baseFeePerGas value in graphql response (erigontech#9974)

    Set baseFeePerGas value in graphql resolver for block
    scorring authored Apr 23, 2024
    Configuration menu
    Copy the full SHA
    6457ef3 View commit details
    Browse the repository at this point in the history
  4. vm: Rename stateTransition gas to gasRemaining (erigontech#10025)

    The `StateTransition` property `gas` actually tracks the remaining gas
    in the current context. This PR is to improve code readability.
    Geth also uses similar naming.
    somnathb1 authored Apr 23, 2024
    Configuration menu
    Copy the full SHA
    de39ac4 View commit details
    Browse the repository at this point in the history
  5. chore: fix function names in comment (erigontech#9987)

    Signed-off-by: fuyangpengqi <[email protected]>
    fuyangpengqi authored Apr 23, 2024
    Configuration menu
    Copy the full SHA
    0fa85d2 View commit details
    Browse the repository at this point in the history
  6. sonar: add test coverage (erigontech#9988)

    - attempt to integrate sonar with test coverage by following 
    -
    https://sonarcloud.io/project/configuration/GitHubActions?id=ledgerwatch_erigon
    -
    https://docs.sonarsource.com/sonarcloud/advanced-setup/ci-based-analysis/github-actions-for-sonarcloud/
    - adds sonar properties file to specify code coverage output
    - also properties file can be used to filter out generated code from
    sonar scan
        - protobuf
        - graphql
        - ignore pedersen hash bindings code
    - ... there will be more ignores coming in later PRs (e.g. some c/c++
    code we dont need to scan, some js code, some contract gen code, etc.)
    taratorio authored Apr 23, 2024
    Configuration menu
    Copy the full SHA
    ff05e20 View commit details
    Browse the repository at this point in the history
  7. sonar: disable c/c++ scanning (erigontech#10033)

    Fixes error in Sonar GitHub action:
    <img width="1645" alt="Screenshot 2024-04-23 at 17 46 01"
    src="https://github.com/ledgerwatch/erigon/assets/94537774/3833db1c-6a8a-4db2-8bb7-5de58b57e638">
    taratorio authored Apr 23, 2024
    Configuration menu
    Copy the full SHA
    7d668f2 View commit details
    Browse the repository at this point in the history
  8. Caplin: Added SyncAggregate computation to block production (erigon…

    …tech#10009)
    
    This PR allows the computation for the computation of the
    `SyncAggregate` field in block production:
    https://sepolia.beaconcha.in/slot/4832922 proof of the code working is
    that now Caplin validators can include sync aggregates in their blocks.
    
    Things modified:
    * We do not aggregate pre-aggregated `SyncContributionAndProof`s,
    instead we just listen to the network and pick the most profitable ones
    for each sub sync committee (4 sync subcommittee on mainnet).
    profitability == most bits set in `AggregationBits` field.
    * Separate aggregates set for contribution to be included in a block
    from the ones constructed from `SyncCommitteeMessage`s, combining the
    two causes some contributions to be marked as invalid and not
    aggregable.
    * Remove SyncContributionMock in favor of gomock
    Giulio2002 authored Apr 23, 2024
    Configuration menu
    Copy the full SHA
    6d9a5fd View commit details
    Browse the repository at this point in the history
  9. polygon/sync: message listener to preserve peer events ordering (erig…

    …ontech#10032)
    
    Observed the following issue in a long running Astrid sync on
    bor-mainnet:
    ```
    [DBUG] [04-17|14:25:43.504] [p2p.peerEventObserver] received new peer event id=Disconnect peerId=51935aa1eeabdb73b70d36c7d5953a3bfdf5c84e88241c44a7d16d508b281d397bdd8504c934bfb45af146b86eb5899ccea85e590774f9823d056a424080b763
    [DBUG] [04-17|14:25:43.504] [p2p.peerEventObserver] received new peer event id=Connect peerId=51935aa1eeabdb73b70d36c7d5953a3bfdf5c84e88241c44a7d16d508b281d397bdd8504c934bfb45af146b86eb5899ccea85e590774f9823d056a424080b763
    ```
    
    Note the timestamps are the same on the millisecond level, however the
    disconnect was processed before the connect which is wrong (connect
    should always be first).
    
    This then got the `PeerTracker` in a bad state - it kept on returning
    peer
    `51935aa1eeabdb73b70d36c7d5953a3bfdf5c84e88241c44a7d16d508b281d397bdd8504c934bfb45af146b86eb5899ccea85e590774f9823d056a424080b763`
    as a valid peer to download from, which caused repeated `peer not found`
    errors when sending messages to it.
    
    Fix is to have the message listener wait for all observers to finish
    processing peer event 1 before proceeding to notifying them about peer
    event 2.
    taratorio authored Apr 23, 2024
    Configuration menu
    Copy the full SHA
    190cbfa View commit details
    Browse the repository at this point in the history
  10. Configuration menu
    Copy the full SHA
    586416c View commit details
    Browse the repository at this point in the history

Commits on Apr 24, 2024

  1. sonar: fix warnings (erigontech#10034)

    Fixes Sonar warnings:
    <img width="550" alt="Screenshot 2024-04-23 at 19 37 53"
    src="https://github.com/ledgerwatch/erigon/assets/94537774/b85c9607-3800-408d-8a1b-c5bf80da38b2">
    taratorio authored Apr 24, 2024
    Configuration menu
    Copy the full SHA
    7066578 View commit details
    Browse the repository at this point in the history
  2. sonar: fix js warnings and exclude mocks (erigontech#10042)

    - Excludes go mock generated files from analysis
    - Excludes broken js files (valid as they are used for tracers and test
    data) to fix below warnings
    <img width="1658" alt="Screenshot 2024-04-24 at 11 12 04"
    src="https://github.com/ledgerwatch/erigon/assets/94537774/7925d07f-37f3-43c9-b34a-9a5361e48a8a">
    taratorio authored Apr 24, 2024
    Configuration menu
    Copy the full SHA
    965213d View commit details
    Browse the repository at this point in the history
  3. tests: Support iterations in Heimdall simulator (erigontech#10040)

    Accept a slice of block numbers that represents the final block number
    that will be available to the client of the simulator.Any data after the
    iteration stage end is not accessible to the client.
    
    The iteration moves to the next stage under certain conditions:
    - requesting the latest span via `FetchSpan`
    - requesting state sync events beyond current last iteration block's
    timestamp
    shohamc1 authored Apr 24, 2024
    Configuration menu
    Copy the full SHA
    faebc82 View commit details
    Browse the repository at this point in the history
  4. Fix forward bor snaps (erigontech#10027)

    This fixes this issue:
    
    erigontech#9499
    
    which is caused by restarting erigon during the bor-heimdall stage.
    
    Previously after the initial call to bor-heimdall (header 0), forward
    downloading was disabled, but backward
    downloading recursively collects headers - holding results in memory
    until it can roll them forward. This should
    only be called for a limited number of headers, otherwise it leads to a
    large amount of memory >45GB for bor
    main net if the process is stopped at block 1.
    mh0lt authored Apr 24, 2024
    Configuration menu
    Copy the full SHA
    d1340de View commit details
    Browse the repository at this point in the history
  5. Added downloader request count (erigontech#10036)

    The downloader is not complete until all of its requested files have
    been downloaded.
    
    This changes adds a request count to the downloader stats to be checked
    for completeness, otherwise the downloader
    may appear complete before all required torrents have been added.
    mh0lt authored Apr 24, 2024
    Configuration menu
    Copy the full SHA
    9af7278 View commit details
    Browse the repository at this point in the history
  6. StageSenders: --sync.loop.block.limit support (erigontech#9982)

    We reverted support of this flag in `updateForkChoice` because
    implementation was too complex and fragile:
    erigontech#9900
    
    But it's good-enough if StageSenders will preserve this flag - then next
    stages (exec) will also follow (because they look at prev stage
    progress).
    
    It's good-enough - because users just want to save some partial progress
    after restoring node from backup (long downtime). And enforce "all
    stages progress together" invariant
    AskAlexSharov authored Apr 24, 2024
    Configuration menu
    Copy the full SHA
    2bd713b View commit details
    Browse the repository at this point in the history
  7. Configuration menu
    Copy the full SHA
    4753554 View commit details
    Browse the repository at this point in the history
  8. Optimize prune old chunks (erigontech#10019)

    **Summary**
    Fixes prune point for log (+index)
    - Unnecessary to use ETL again for deleting `kv.Log` entries, can just
    introduce `RwCursor` in the initial loop
    - Put the last `pruneTo` block number in the `PruneState` - this will
    begin pruning from that point. Earlier the `pruneFrom` point being
    passed in was buggy as it used some other assumption for this value
    somnathb1 authored Apr 24, 2024
    Configuration menu
    Copy the full SHA
    d318f11 View commit details
    Browse the repository at this point in the history
  9. [ots] Fix block rewards calculation on post-merge blocks (erigontech#…

    …10038)
    
    This is for E2.
    
    The block rewards returned by Otterscan API is incorrect since the
    merge. It replaces very old code with the same calculation used for
    trace_block.
    
    this code probably won't work with Aura consensus, but that's ok since
    the current one doesn't work as well. It would actually require exposing
    more code from block execution and I don't want to handle it for now,
    let's fix only the post-merge calc for now.
    
    Co-authored-by: sealer3 <[email protected]>
    wmitsuda and sealer3 authored Apr 24, 2024
    Configuration menu
    Copy the full SHA
    dfdfed5 View commit details
    Browse the repository at this point in the history
  10. Configuration menu
    Copy the full SHA
    ed3325b View commit details
    Browse the repository at this point in the history
  11. Configuration menu
    Copy the full SHA
    831c48d View commit details
    Browse the repository at this point in the history
  12. Configuration menu
    Copy the full SHA
    49b7a97 View commit details
    Browse the repository at this point in the history
  13. Configuration menu
    Copy the full SHA
    9976e3c View commit details
    Browse the repository at this point in the history

Commits on Apr 25, 2024

  1. Build Silkworm RpcDaemon settings from Erigon ones (erigontech#10002)

    This PR introduces support for customising Silkworm RpcDaemon settings
    in Erigon++.
    
    Common RPC settings between Erigon and Silkworm are simply translated
    from the existing Erigon command-line options. They include:
    - `--http.addr`
    - `--http.port`
    - `--http.compression`
    - `--http.corsdomain`
    - `--http.api`
    - `--ws`
    - `--ws.compression`
    
    Moreover, the following Silkworm-specific command-line options are
    added:
    - `--silkworm.verbosity`
    - `--silkworm.contexts`
    - `--silkworm.rpc.log`
    - `--silkworm.rpc.log.maxsize`
    - `--silkworm.rpc.log.maxfiles`
    - `--silkworm.rpc.log.response`
    - `--silkworm.rpc.workers`
    - `--silkworm.rpc.compatibility`
    
    Default values cover the common usages of Erigon++ experimental
    features, yet such options can be useful for testing some corner cases
    or collecting information.
    
    Finally, this PR adds a new `LogDirPath` function to `logging` module
    just to determine the log dir path used by Erigon and put there also
    Silkworm RPC interface logs, when enabled.
    canepat authored Apr 25, 2024
    Configuration menu
    Copy the full SHA
    d2aaa68 View commit details
    Browse the repository at this point in the history
  2. Optimized attestation processing (erigontech#10020)

    * Decrease memory footprint on chain tip
    * Fix a race
    * Better times on `Attestation` processing. 1 sec -> 54 ms
    Giulio2002 authored Apr 25, 2024
    Configuration menu
    Copy the full SHA
    2fe4b37 View commit details
    Browse the repository at this point in the history
  3. Configuration menu
    Copy the full SHA
    3323fdc View commit details
    Browse the repository at this point in the history
  4. chore: fix comments (erigontech#9958)

    Fix some comments
    persmor authored Apr 25, 2024
    Configuration menu
    Copy the full SHA
    b2cf6d2 View commit details
    Browse the repository at this point in the history
  5. Configuration menu
    Copy the full SHA
    0620607 View commit details
    Browse the repository at this point in the history
  6. drop go 1.20 support (erigontech#10052)

    drop go 1.20 support 
    
    use ` github.com/erigontech/torrent v1.54.2-alpha` - to simplify future
    support and features backport
    AskAlexSharov authored Apr 25, 2024
    Configuration menu
    Copy the full SHA
    ee420ad View commit details
    Browse the repository at this point in the history
  7. Configuration menu
    Copy the full SHA
    a700f92 View commit details
    Browse the repository at this point in the history
  8. Configuration menu
    Copy the full SHA
    cb73f91 View commit details
    Browse the repository at this point in the history
  9. downloader: remove deprecated manual fsync (erigontech#10064)

    After switching to more durable db mode
    erigontech#10010 - we don't need manual
    fsync anymore.
    AskAlexSharov authored Apr 25, 2024
    Configuration menu
    Copy the full SHA
    bc18485 View commit details
    Browse the repository at this point in the history
  10. Configuration menu
    Copy the full SHA
    c973a15 View commit details
    Browse the repository at this point in the history
  11. Caplin: fixed attestation broadcasting (erigontech#10041)

    This PR fixes 2 things:
    * Superset handling (should ignore)
    * SSZ offset not set for custom ssz in attestation encoding after json
    unmarshalling
    Giulio2002 authored Apr 25, 2024
    Configuration menu
    Copy the full SHA
    341bfea View commit details
    Browse the repository at this point in the history
  12. feat: add fullTx params to NewPendingTransactions (erigontech#9204)

    feat: add `fullTx` params to `NewPendingTransactions`
    
    Closes erigontech#9203
    fenghaojiang authored Apr 25, 2024
    Configuration menu
    Copy the full SHA
    b9ebb6c View commit details
    Browse the repository at this point in the history
  13. backward compatibility of .lock (erigontech#10006)

    In PR: 
    - new .lock format introduced by
    erigontech#9766 is not backward
    compatible. In the past “empty .lock” did mean “all prohibited” and it
    was changed to “all allowed”.
    - commit
    
    Not in PR: I have idea to make .lock also forward compatible - by making
    it whitelist instead of blacklist: after adding new snap type it will
    not be downloaded by accident. Will do it in next PR.
    
    But I need one more confirmation - why do we need exceptions from .lock?
    Why we breaking "download once" invariant for some type of files? Can we
    avoid it?
    AskAlexSharov authored Apr 25, 2024
    Configuration menu
    Copy the full SHA
    3829bfe View commit details
    Browse the repository at this point in the history
  14. Make logs subscription channel size configurable (erigontech#9810)

    This PR makes the channel that is used to send logs to subscriptions
    configurable so logs are not dropped when the channel gets filled. See
    issue 9699.
    This is just an initial version since I wanted to gather some feedback
    and was unsure if this is the correct approach to solve this.
    adytzu2007 authored Apr 25, 2024
    Configuration menu
    Copy the full SHA
    a0049fe View commit details
    Browse the repository at this point in the history
  15. Configuration menu
    Copy the full SHA
    d7cd1fa View commit details
    Browse the repository at this point in the history

Commits on Apr 26, 2024

  1. [ots] Fix incorrect return type and overflow on total block fees calc (

    …erigontech#10070)
    
    For E2: fix incorrect type + overflow in certain blocks
    
    Corresponding otterscan issue:
    otterscan/otterscan#1658
    wmitsuda authored Apr 26, 2024
    Configuration menu
    Copy the full SHA
    3e1331a View commit details
    Browse the repository at this point in the history
  2. RPC: --http.dbg.single=true and custom HTTP header dbg: true (eri…

    …gontech#10039)
    
    - Added method `tx.Context()` - because Tx already bounded to context by
    `db.BeginRo(ctx)`
    - Removed ctx parameter from `BlockWithSenders` method in interfaces
    - Added `dbg.ToContext()` and `dbg.Enabled(ctx)` methods to set/get
    debugging tag to `ctx`.
    
    Added way to debug single http request: 
    To print more detailed logs for 1 request - add `--http.dbg.single=true`
    flag. Then can send HTTP header `"dbg: true"`:
    
    ```
    curl -X POST -H "dbg: true" -H "Content-Type: application/json" --data '{"jsonrpc": "2.0", "method": "eth_blockNumber", "params": [], "id":1}' localhost:8545
    ```
    
    ---------
    
    Co-authored-by: battlmonstr <[email protected]>
    AskAlexSharov and battlmonstr authored Apr 26, 2024
    Configuration menu
    Copy the full SHA
    a5270bc View commit details
    Browse the repository at this point in the history
  3. all: use the built-in slices library (erigontech#9842)

    In the current go 1.21 version used in the project, slices are no longer
    an experimental feature and have entered the standard library
    
    Co-authored-by: alex.sharov <[email protected]>
    carehabit and AskAlexSharov authored Apr 26, 2024
    Configuration menu
    Copy the full SHA
    9001183 View commit details
    Browse the repository at this point in the history
  4. chore(config): json marshal chainName (erigontech#9865)

    As the other fields are json marshaled into lowerUpper case, we should
    use the same style.
    
    ---------
    
    Signed-off-by: jsvisa <[email protected]>
    jsvisa authored Apr 26, 2024
    Configuration menu
    Copy the full SHA
    aee77ab View commit details
    Browse the repository at this point in the history
  5. Fix new_heads Events Emission on Block Forks (erigontech#10072)

    TL;DR: on a reorg, the common ancestor block is not being published to
    subscribers of newHeads
    
    #### Expected behavior
    
    if the reorg's common ancestor is 2, I expect 2 to be republished
    
    1, 2, **2**, **3**, **4**
    
    #### Actual behavior
    
    2 is not republished, and 3's parentHash points to a 2 header that was
    never received
    
    1, 2, **3**, **4**
    
    This PR is the same thing as
    erigontech#9738 except with a test.
    
    Note... the test passes, but **this does not actually work in
    production** (for Ethereum mainnet with prysm as external CL).
    
    Why? Because in production, `h.sync.PrevUnwindPoint()` is always nil:
    https://github.com/ledgerwatch/erigon/blob/a5270bccf5e69a6beaaab9a0663bdad80e989505/turbo/stages/stageloop.go#L291
    which means the initial "if block" is never entered, and thus we have
    **no control** of increment/decrement `notifyFrom` during reorgs
    https://github.com/ledgerwatch/erigon/blob/a5270bccf5e69a6beaaab9a0663bdad80e989505/eth/stagedsync/stage_finish.go#L137-L146
    
    I don't know why `h.sync.PrevUnwindPoint()` is seemingly always nil, or
    how the test can pass if it fails in prod. I'm hoping to pass the baton
    to someone who might. Thank you @indanielo for original fix.
    
    If we can figure this bug out, it closes erigontech#8848 and closes erigontech#9568 and
    closes erigontech#10056
    
    ---------
    
    Co-authored-by: Daniel Gimenez <[email protected]>
    jotto and indanielo authored Apr 26, 2024
    Configuration menu
    Copy the full SHA
    4e56433 View commit details
    Browse the repository at this point in the history
  6. Configuration menu
    Copy the full SHA
    eac6f04 View commit details
    Browse the repository at this point in the history
  7. Configuration menu
    Copy the full SHA
    c83ee65 View commit details
    Browse the repository at this point in the history
  8. Configuration menu
    Copy the full SHA
    6e7efa2 View commit details
    Browse the repository at this point in the history
  9. Configuration menu
    Copy the full SHA
    382f881 View commit details
    Browse the repository at this point in the history

Commits on Apr 27, 2024

  1. downloader: docs on MMAP for data-files r/w and experiments with bufio (

    erigontech#10074)
    
    Pros:
    - it allows to not pre-alloc files:
    erigontech#8688
    - it allows to not "sig-bus" when no space left on disk (return
    user-friendly error). see:
    erigontech#8500 - but DB will be MMAP
    anyway and may get "sig-bus"
    
    FYI:
    - seems no perf difference (but i tested only on cloud drives)
    - erigon will anyway open it as mmap 
     
    Cons: 
    - i did implemented `fsync` for mmap (
    anacrolix/torrent#755 ) - probably will need
    implement it for bufio: anacrolix/torrent#937
    - no zero-copy: more `alloc` memory will be holded by APP (PageCache
    starvation). I see 2x mem usage (at `--torrent.download.slots=500` 20gb
    vs 40gb)
    - i see "10K threads exchaused" error earlier (on
    `--torrent.download.slots=500`).
    - what else?
    AskAlexSharov authored Apr 27, 2024
    Configuration menu
    Copy the full SHA
    7ac8b10 View commit details
    Browse the repository at this point in the history
  2. Configuration menu
    Copy the full SHA
    d450357 View commit details
    Browse the repository at this point in the history
  3. Configuration menu
    Copy the full SHA
    ab0f633 View commit details
    Browse the repository at this point in the history
  4. Fetch and skip sync events (erigontech#10051)

    For period where there are not many sync events (mostly testnets) sync
    event fecthing can be slow becuase sync events are fetched at the end of
    every sprint.
    
    Fetching the next and looking at its block number optimizes this because
    fetches can be skipped until the next known block with sync events.
    mh0lt authored Apr 27, 2024
    Configuration menu
    Copy the full SHA
    5d92302 View commit details
    Browse the repository at this point in the history
  5. EIP-2537 (BLS12-381): use gnark instead of kilic (erigontech#10082)

    Cherry pick ethereum/go-ethereum#29441
    
    ---------
    
    Co-authored-by: Marius van der Wijden <[email protected]>
    Co-authored-by: Martin Holst Swende <[email protected]>
    3 people authored Apr 27, 2024
    Configuration menu
    Copy the full SHA
    2241e11 View commit details
    Browse the repository at this point in the history
  6. abi: fix abigen issue with make devtools (erigontech#10091)

    fixes erigontech#7593 
    
    it introduced a regression: `"fmt"` and `"reflect"` imports were added
    for all files generated by `abigen` assuming that they will be used in
    all cases, however that assumption was wrong for some cases resulting in
    invalid code being generated (in this case after running `make
    devtools`):
    <img width="982" alt="Screenshot 2024-04-27 at 10 50 37"
    src="https://github.com/ledgerwatch/erigon/assets/94537774/9a1b93a5-2141-40d9-8c9e-01a1ff6c031c">
    taratorio authored Apr 27, 2024
    Configuration menu
    Copy the full SHA
    00850e0 View commit details
    Browse the repository at this point in the history
  7. Caplin: Inclusion of VoluntaryExits, AttesterSlashings, `Proposer…

    …Slashing`s, `BlsExecutionToChange`s and `Attestation`s into block production (erigontech#10071)
    
    This PR add operations inclusion.
    ## Normal operations
    
    * BlsExecutionChange
    * VoluntaryExit
    * Slashings
    
    Each of these operations blacklist the index they work on so we do not
    have repeating indices for the same operations twice. we assume all
    signatures are pre-validated and just see if it is a good time to
    produce a block with them (by looking at their slot)
    ## Aggregated Attestations
    
    There is a lot of trash attestations on the network so we separate our
    algorithm in 3 steps:
    
    ### Eligibility
    
    We iterate over the entire pool of accumulated attestations and filter
    out all attestations who cannot be included at the current slot, and
    compute their expected reward. (filter out if 0).
    
    ### Ranking
    
    We rank the `Attestation`s by their expected reward (we just sort the
    array of candidates) by expected reward in ascending order.
    
    ### Filtering by superset
    
    We may have some supersets left-over, filter attestation which ends up
    being supersets of other. this process is done from highest reward down
    to lowest reward.
    Giulio2002 authored Apr 27, 2024
    Configuration menu
    Copy the full SHA
    b14b766 View commit details
    Browse the repository at this point in the history
  8. mdbx: Return err early in iter.Next() (erigontech#10078)

    `HasNext` will return true even with existing error and the application
    will expect a next entry. The `Next` function can get into an internal
    error (such as a `panic()`) while fetching the next cursor item and thus
    fail to return the error.
    
    ---------
    
    Co-authored-by: alex.sharov <[email protected]>
    somnathb1 and AskAlexSharov authored Apr 27, 2024
    Configuration menu
    Copy the full SHA
    d7d0960 View commit details
    Browse the repository at this point in the history

Commits on Apr 28, 2024

  1. make: mocks using mockgen (erigontech#10098)

    - replaces usages of `moq` in `erigon-lib` with `mockgen` (gomock)
    - adds a `make mocks` and `mocks-clean` command for `erigon`
    - updates existing `make mocks` command and adds a `mocks-clean` common
    for `erigon-lib`
    taratorio authored Apr 28, 2024
    Configuration menu
    Copy the full SHA
    63578a8 View commit details
    Browse the repository at this point in the history
  2. mockgen: use typed mocks for compile time check (erigontech#10103)

    Use `mockgen -typed=true` to generate mocks with type-safe `Return`,
    `Do`, `DoAndReturn` function -
    https://github.com/uber-go/mock?tab=readme-ov-file#flags
    taratorio authored Apr 28, 2024
    Configuration menu
    Copy the full SHA
    4bc3bc6 View commit details
    Browse the repository at this point in the history

Commits on Apr 29, 2024

  1. make: add gen commands (erigontech#10106)

    adds:
    - `make gen`
    - `make solc`
    - `make abigen`
    - `make codecgen`
    - `make gencodec`
    - `make graphql`
    
    tidies up `make devtools`
    taratorio authored Apr 29, 2024
    Configuration menu
    Copy the full SHA
    255be13 View commit details
    Browse the repository at this point in the history
  2. added print DBs table sizes (erigontech#10111)

    Added command to print databases tables basic info. There are two
    options :
    - print all info: ./build/bin/diag dbs all
    - print only populated tables and dbs: ./build/bin/diag dbs pop   
    
    Here is example output:
    ![Screenshot 2024-04-28 at 21 38
    18](https://github.com/ledgerwatch/erigon/assets/29065143/f0a04931-8d87-4c45-b71a-71d75404f3fc)
    
    
    @taratorio if you want I can add flag which will print specific DB.
    dvovk authored Apr 29, 2024
    Configuration menu
    Copy the full SHA
    e697459 View commit details
    Browse the repository at this point in the history
  3. Configuration menu
    Copy the full SHA
    3ad651e View commit details
    Browse the repository at this point in the history
  4. Caplin: tweaks to make staking more stable. (erigontech#10097)

    Tweaks I did:
    1) Decreased attestation expiry down to 30 minutes
    2) Removed slot check in committeeSubAggregation
    3) More reliable algorithm for the dependent root
    
    Results:
    * Better aggregates
    * Less strain on the node
    * No blocks/attestations missed
    Giulio2002 authored Apr 29, 2024
    Configuration menu
    Copy the full SHA
    3b72b5a View commit details
    Browse the repository at this point in the history
  5. mdbx: pre-open read pagesize from db (erigontech#10113)

    Problem: if --pageSize parameter not set - we using `default pagesize`
    instead of `real pagesize of db`. And it causing different `dirtySpace`
    size (because it's accounted in "pages")
    AskAlexSharov authored Apr 29, 2024
    Configuration menu
    Copy the full SHA
    a12a99c View commit details
    Browse the repository at this point in the history
  6. RPC: Receipts LRU cache (erigontech#10112)

    for erigontech#10099
    for things like `eth_getTransactionReceipt`,
    `ots_searchTransactionsAfter`, etc...
    
    Also moved:
    - moved `api.chainConfig()` inside `api.getReceipts()`
    - switched `ots` to use blocks/receipts lru
    - switched price oracle to use blocks/receipts
    AskAlexSharov authored Apr 29, 2024
    Configuration menu
    Copy the full SHA
    83c95ba View commit details
    Browse the repository at this point in the history
  7. use sonar for code coverage badge (erigontech#10107)

    - use sonar badge for code coverage
    - remove unnecessary "Coverage" GitHub action and unnecessary duplicate
    test run on "devel" CI for it
    - the existing coverage job + badge didn't seem to be accurate (wasn't
    taking into account `erigon-lib` sub-module)
    
    <img width="982" alt="Screenshot 2024-04-29 at 12 06 46"
    src="https://github.com/ledgerwatch/erigon/assets/94537774/e47367ed-340d-42b5-ad00-2f59edce100c">
    taratorio authored Apr 29, 2024
    Configuration menu
    Copy the full SHA
    aed056f View commit details
    Browse the repository at this point in the history
  8. dvovk/limit mem usage (erigontech#10069)

    Implemented limit for saving peers in an Erigon node memory to be able
    to turn on diagnostics data collection by default.
    dvovk authored Apr 29, 2024
    Configuration menu
    Copy the full SHA
    2b83da1 View commit details
    Browse the repository at this point in the history
  9. chore: fix some function names (erigontech#10117)

    Signed-off-by: luchenhan <[email protected]>
    luchenhan authored Apr 29, 2024
    Configuration menu
    Copy the full SHA
    06dfaea View commit details
    Browse the repository at this point in the history
  10. Revert "backward compatibility of .lock" and Backward compatibility b…

    …y Giulio (erigontech#10077)
    
    Reverts erigontech#10006 and add a proper migration routine
    Giulio2002 authored Apr 29, 2024
    Configuration menu
    Copy the full SHA
    298e153 View commit details
    Browse the repository at this point in the history
  11. dvovk/enable_dignostic (erigontech#10083)

    Enabled diagnostics by default to collect data. It will allow to connect
    to node and get stored data. It includes three new flags:
    - "diagnostics.disabled" - it's set to "false" by default. Set to "true"
    if you want to disable diagnostics.
    - "diagnostics.endpoint.addr" - address of HTTP endpoint to get
    diagnostics data
    - "diagnostics.endpoint.port" - port of HTTP endpoint to get diagnostics
    data
    
    [DO NOT MERGE] as it depend on: 
    - erigontech#10069
    - update support command
    - update diagnostics UI
    dvovk authored Apr 29, 2024
    Configuration menu
    Copy the full SHA
    0967c5e View commit details
    Browse the repository at this point in the history
  12. Configuration menu
    Copy the full SHA
    287e4a2 View commit details
    Browse the repository at this point in the history
  13. Bor waypoint storage (erigontech#9793)

    Implementation of db and snapshot storage for additional synced hiemdall
    waypoint types
    
    * Checkpoint
    * Milestones
    
    This is targeted at the Astrid downloader which uses waypoints to verify
    headers during syncing and fork choice selection.
    
    Post milestones for heimdall these types are currently downloaded by
    erigon but not persisted locally. This change adds persistence for these
    types.
    
    In addition to the pure persistence changes this PR also contains a
    refactor step which is part of the process of extracting polygon related
    types from erigon core into a seperate package which may eventually be
    extracted to a separate module and possibly repo.
    
    The aim is rather than the core `turbo\snapshotsync\freezeblocks` having
    to know about types it manages and how to exaract and index their
    contents this can concern it self with a set of macro shard management
    actions.
    
    This process is partially completed by this PR, a final step will be to
    remove BorSnapshots and to simplify the places in the code which has to
    remeber to deal with them. This requires further testing so has been
    left out of this PR to avoid delays in delivering the base types.
    
    # Status
    
    * Waypont types and storage are complete and integrated in to the
    BorHeimdall stage, The code has been tested to check that types are
    inserted into mdbx, extracted and merged correctly
    * I have verified that when produced from block 0 the new snapshot
    correctly follow the merging strategy of existing snapshots
    * The functionality is enables by a **--bor.waypoints=true** this is
    false by default.
    
    # Testing
    
    This has been tested as follows:
    
    * Run a Mumbai instance to the tip and check current processing for
    milestones and checkpoints
    
    # Post merge steps
    
    * Produce and release snapshots for mumbai and bor mainnet
    * Check existing node upgrades
    * Remove --bor.waypoints flags
    mh0lt authored Apr 29, 2024
    Configuration menu
    Copy the full SHA
    714c259 View commit details
    Browse the repository at this point in the history
  14. Replace snaptype.AllTypes with local definitions (erigontech#10132)

    When adding bor waypont types I have removed snaptype.AllTypes because
    it causes package cross-dependencies.
    
    This fixes the places where all types have been used post the merge
    changes.
    mh0lt authored Apr 29, 2024
    Configuration menu
    Copy the full SHA
    b766820 View commit details
    Browse the repository at this point in the history
  15. Configuration menu
    Copy the full SHA
    dee2191 View commit details
    Browse the repository at this point in the history

Commits on Apr 30, 2024

  1. qa-tests: small improvements (erigontech#10127)

    This PR
    - avoids installing Golang on every test run, 
    - clean up the testbed datadir at the end of the test
    mriccobene authored Apr 30, 2024
    Configuration menu
    Copy the full SHA
    d8bf235 View commit details
    Browse the repository at this point in the history
  2. Configuration menu
    Copy the full SHA
    7edc0b8 View commit details
    Browse the repository at this point in the history
  3. align deps of e35 and devel (erigontech#10136)

    - upgrade docker 
    - remove tendermint
    AskAlexSharov authored Apr 30, 2024
    Configuration menu
    Copy the full SHA
    9e7e8c3 View commit details
    Browse the repository at this point in the history
  4. core/types: disable go:generate codecgen for receipts and logs (erigo…

    …ntech#10105)
    
    running `go generate ./...` fails with:
    ```
    codecgen error: error running 'go run codecgen-main-2.generated.go': exit status 1, console: panic: encoding alphabet includes duplicate symbols
    
    goroutine 1 [running]:
    encoding/base64.NewEncoding(...)
        /usr/local/go/src/encoding/base64/base64.go:82
    github.com/ugorji/go/codec.init()
        /Users/milen/go/pkg/mod/github.com/ugorji/go/[email protected]/gen.go:168 +0xf1c
    exit status 2
    ```
    
    this is a problem when using go1.22 and it has been fixed here:
    -
    ugorji/go@8286c2d
    - issue: ugorji/go#407
    taratorio authored Apr 30, 2024
    Configuration menu
    Copy the full SHA
    70dfadd View commit details
    Browse the repository at this point in the history
  5. Configuration menu
    Copy the full SHA
    01e4969 View commit details
    Browse the repository at this point in the history
  6. Refactored types to force runtime registrations to be type dependent (e…

    …rigontech#10147)
    
    This resolves erigontech#10135
    
    All enums are constrained by their owning type which forces package
    includsion and hence type registration.
    
    Added tests for each type to check the construction cycle.
    mh0lt authored Apr 30, 2024
    Configuration menu
    Copy the full SHA
    1558fc7 View commit details
    Browse the repository at this point in the history

Commits on May 1, 2024

  1. Configuration menu
    Copy the full SHA
    24a789b View commit details
    Browse the repository at this point in the history
  2. Set existing torrent webseeds after download (erigontech#10149)

    Fix a timing hole where torrents that get created before webseeds have
    been downloaded don't get webseeds set.
    mh0lt authored May 1, 2024
    Configuration menu
    Copy the full SHA
    8d21150 View commit details
    Browse the repository at this point in the history
  3. eth, txpool: enforce 30gwei for gas related configs for polygon (erig…

    …ontech#10158)
    
    Cherry-pick PR erigontech#10119 into the release
    
    Co-authored-by: Marcello Ardizzone <[email protected]>
    yperbasis and marcello33 authored May 1, 2024
    Configuration menu
    Copy the full SHA
    82262fe View commit details
    Browse the repository at this point in the history

Commits on May 2, 2024

  1. make: fix gen issue with mockgen not found in PATH (erigontech#10162) (

    …erigontech#10166)
    
    Fixes
    erigontech#10157 (comment)
    
    Problem was:
    ```
    grep -r -l --exclude-dir=erigon-lib "^// Code generated by MockGen. DO NOT EDIT.$" . | xargs rm -r
    ```
    
    was deleting the `mockgen` binary after it was built 🙃
    taratorio authored May 2, 2024
    Configuration menu
    Copy the full SHA
    697732d View commit details
    Browse the repository at this point in the history
  2. abigen: fix duplicate struct definitions (erigontech#10157) (erigonte…

    …ch#10164)
    
    fixes a 2nd regression introduced by -
    erigontech#7593
    
    - it generates duplicate struct types in the same package (check
    screenshot below)
    - also found a better way to fix the first regression with unused
    imports (improvement over
    erigontech#10091)
    
    <img width="1438" alt="Screenshot 2024-04-30 at 17 30 42"
    src="https://github.com/ledgerwatch/erigon/assets/94537774/154d484b-4b67-4104-8a6e-eac2423e1c0e">
    taratorio authored May 2, 2024
    Configuration menu
    Copy the full SHA
    9a010cd View commit details
    Browse the repository at this point in the history
  3. dvovk/pprof fix (erigontech#10155) (erigontech#10178)

    Cherry pick PR erigontech#10155 into the release
    
    Co-authored-by: Dmytro <[email protected]>
    yperbasis and dvovk authored May 2, 2024
    Configuration menu
    Copy the full SHA
    4079f4e View commit details
    Browse the repository at this point in the history
  4. Engine API: NewPayload fails with a "context canceled" error in Curre…

    …nt/GetHeader (erigontech#9786) (erigontech#9894)
    
    * improved logging
    * check ctx in ServeHTTP: The context might be cancelled if the client's
    connection was closed while waiting for ServeHTTP.
    * If execution API returns ExecutionStatus_Busy, limit retry attempts to
    10 seconds. This timeout must be lower than a typical client timeout (30
    sec), in order to give the client feedback about the server status.
    * If execution API returns ExecutionStatus_Busy, increase retry delay
    from 10 ms to 100 ms to avoid stalling ourselves with multiple busy
    loops. IMO this delay should be higher (e.g. 1 sec). Ideally we
    shouldn't do polling at all, but doing a blocking ctx call requires
    rearchitecting the ExecutionStatus_Busy logic.
    
    see erigontech#9786
    battlmonstr authored May 2, 2024
    Configuration menu
    Copy the full SHA
    bd1a458 View commit details
    Browse the repository at this point in the history
  5. Configuration menu
    Copy the full SHA
    b59f04c View commit details
    Browse the repository at this point in the history

Commits on May 3, 2024

  1. Unnecessary Logs in sentry removed (erigontech#10190)

    Cherry pick PR erigontech#10187 into the release
    
    Co-authored-by: Giulio rebuffo <[email protected]>
    yperbasis and Giulio2002 authored May 3, 2024
    Configuration menu
    Copy the full SHA
    a5257bf View commit details
    Browse the repository at this point in the history
  2. nil block during execution (erigontech#10193)

    release cherry pick
    AskAlexSharov authored May 3, 2024
    Configuration menu
    Copy the full SHA
    6648899 View commit details
    Browse the repository at this point in the history

Commits on May 4, 2024

  1. qa-tests: updating test workflow on release/2.60 (erigontech#10196)

    This PR brings the changes of erigontech#10195 to the branch release/2.60 with the
    necessary modifications
    mriccobene authored May 4, 2024
    Configuration menu
    Copy the full SHA
    49e0171 View commit details
    Browse the repository at this point in the history

Commits on May 6, 2024

  1. qa-tests: fix workflows for release 2.60 (erigontech#10217)

    Running a test every day doesn't make sense on an inactive branch. 
    It also seems that the schedule trigger favours the main branch if the
    test workflow has the same name on the main and other branches.
    So this PR changes the test trigger to "push events".
    mriccobene authored May 6, 2024
    Configuration menu
    Copy the full SHA
    88680ca View commit details
    Browse the repository at this point in the history
  2. Configuration menu
    Copy the full SHA
    a1e1338 View commit details
    Browse the repository at this point in the history
  3. Blocks snaps - see 0 indices after reopen (erigontech#10219)

    Cherry pick PR erigontech#10214 into the release
    
    Co-authored-by: Alex Sharov <[email protected]>
    yperbasis and AskAlexSharov authored May 6, 2024
    Configuration menu
    Copy the full SHA
    948e781 View commit details
    Browse the repository at this point in the history

Commits on May 7, 2024

  1. torrent v1.54.2-alpha-7 -> v1.54.2-alpha-8 (release/2.60) (erigontech…

    …#10224)
    
    This adds torrent fixes that remove bad peers due to non handling of
    http errs.
    mh0lt authored May 7, 2024
    Configuration menu
    Copy the full SHA
    40d1327 View commit details
    Browse the repository at this point in the history
  2. Configuration menu
    Copy the full SHA
    13ef2da View commit details
    Browse the repository at this point in the history
  3. fixed start diag server (erigontech#10236)

    fixed start diag server if metrics address is different from pprof
    address
    
    ---------
    
    Co-authored-by: taratorio <[email protected]>
    dvovk and taratorio authored May 7, 2024
    Configuration menu
    Copy the full SHA
    764706d View commit details
    Browse the repository at this point in the history

Commits on May 8, 2024

  1. Configuration menu
    Copy the full SHA
    7d41c27 View commit details
    Browse the repository at this point in the history
  2. downloader: --seedbox doesn't init snaptypes (erigontech#10245)

    Cherry pick PR erigontech#10215 into the release
    
    Co-authored-by: Alex Sharov <[email protected]>
    yperbasis and AskAlexSharov authored May 8, 2024
    Configuration menu
    Copy the full SHA
    32f7775 View commit details
    Browse the repository at this point in the history

Commits on May 9, 2024

  1. Configuration menu
    Copy the full SHA
    23908e4 View commit details
    Browse the repository at this point in the history
  2. Configuration menu
    Copy the full SHA
    f08eb13 View commit details
    Browse the repository at this point in the history
  3. test

    anshalshukla committed May 9, 2024
    Configuration menu
    Copy the full SHA
    1455478 View commit details
    Browse the repository at this point in the history

Commits on May 10, 2024

  1. Configuration menu
    Copy the full SHA
    620d425 View commit details
    Browse the repository at this point in the history

Commits on May 13, 2024

  1. Configuration menu
    Copy the full SHA
    64f677a View commit details
    Browse the repository at this point in the history

Commits on May 14, 2024

  1. remove nils from p2p logs (erigontech#10303)

    fix for 
    ```
    [p2p] Server                             protocol=68 peers=2 trusted=0 inbound=1 LOG15_ERROR= LOG15_ERROR= LOG15_ERROR= LOG15_ERROR= LOG15_ERROR= i/o timeout=53 EOF=65 closed by remote=215 too many peers=6 ecies: invalid message=5
    ```
    AskAlexSharov authored May 14, 2024
    Configuration menu
    Copy the full SHA
    e67eaaf View commit details
    Browse the repository at this point in the history
  2. Configuration menu
    Copy the full SHA
    7883a4e View commit details
    Browse the repository at this point in the history

Commits on May 17, 2024

  1. Fix tests

    cffls committed May 17, 2024
    Configuration menu
    Copy the full SHA
    dc7a963 View commit details
    Browse the repository at this point in the history
  2. fix Consensus specification tests CI (erigontech#10391) (erigontech#1…

    …0396)
    
    Cherry-pick:
    erigontech@bc5fa6f
    
    Need this to get PR CI green for v2.60.1 patches, e.g. -
    erigontech#10390
    
    Co-authored-by: Andrew Ashikhmin <[email protected]>
    taratorio and yperbasis authored May 17, 2024
    Configuration menu
    Copy the full SHA
    ce8b757 View commit details
    Browse the repository at this point in the history

Commits on May 18, 2024

  1. Configuration menu
    Copy the full SHA
    c2934dc View commit details
    Browse the repository at this point in the history

Commits on May 20, 2024

  1. Configuration menu
    Copy the full SHA
    62c5584 View commit details
    Browse the repository at this point in the history
  2. Configuration menu
    Copy the full SHA
    e609feb View commit details
    Browse the repository at this point in the history
  3. Bump go version to 1.21

    cffls committed May 20, 2024
    Configuration menu
    Copy the full SHA
    6bb66d5 View commit details
    Browse the repository at this point in the history
  4. Add erigon-lib back

    cffls committed May 20, 2024
    Configuration menu
    Copy the full SHA
    666c306 View commit details
    Browse the repository at this point in the history
  5. Configuration menu
    Copy the full SHA
    6d4a614 View commit details
    Browse the repository at this point in the history
  6. Fix dynamic config

    cffls committed May 20, 2024
    Configuration menu
    Copy the full SHA
    316a9e5 View commit details
    Browse the repository at this point in the history
  7. Fix APIList

    cffls committed May 20, 2024
    Configuration menu
    Copy the full SHA
    dc0b936 View commit details
    Browse the repository at this point in the history

Commits on May 23, 2024

  1. Configuration menu
    Copy the full SHA
    a1f10c9 View commit details
    Browse the repository at this point in the history
  2. Upstream merge fix

    Fix txpool and metrics
    cffls committed May 23, 2024
    Configuration menu
    Copy the full SHA
    0348a30 View commit details
    Browse the repository at this point in the history
  3. Configuration menu
    Copy the full SHA
    2f2ff9d View commit details
    Browse the repository at this point in the history

Commits on May 24, 2024

  1. fix gas price not right problem (erigontech#10456)

    Cherry pick PR erigontech#10451 into the release branch
    
    Co-authored-by: mars <[email protected]>
    yperbasis and marshalys authored May 24, 2024
    Configuration menu
    Copy the full SHA
    7fced9f View commit details
    Browse the repository at this point in the history

Commits on May 27, 2024

  1. eth_estimateGas: default feeCap to base fee (erigontech#10499)

    Copy PR erigontech#10495 into the release branch
    yperbasis authored May 27, 2024
    Configuration menu
    Copy the full SHA
    c0be07d View commit details
    Browse the repository at this point in the history
  2. Add flag for bor waypoint types (erigontech#10501)

    Cherry pick PR erigontech#10281 into the release branch
    
    Co-authored-by: Mark Holt <[email protected]>
    Co-authored-by: alex.sharov <[email protected]>
    3 people authored May 27, 2024
    Configuration menu
    Copy the full SHA
    2e500bd View commit details
    Browse the repository at this point in the history
  3. try to fix 'method handler crashed' for debug_traceCall of erigontech…

    …#9090 (erigontech#10502)
    
    Cherry pick PR erigontech#10401 into the release branch
    
    Co-authored-by: mars <[email protected]>
    yperbasis and marshalys authored May 27, 2024
    Configuration menu
    Copy the full SHA
    b0df97f View commit details
    Browse the repository at this point in the history
  4. diagnostics: cherry pick speedtest disable (erigontech#10509)

    Cherry pick PR erigontech#10449 into the release branch
    dvovk authored May 27, 2024
    Configuration menu
    Copy the full SHA
    7e1adef View commit details
    Browse the repository at this point in the history
  5. Enable DNS p2p discovery on holesky (erigontech#10507)

    Cherry pick PR erigontech#10460 into the release branch
    
    Co-authored-by: Willian Mitsuda <[email protected]>
    yperbasis and wmitsuda authored May 27, 2024
    Configuration menu
    Copy the full SHA
    7b5653b View commit details
    Browse the repository at this point in the history
  6. fix eth_call 'method handler crashed' error when tx has set maxFeePer…

    …BlobGas (erigontech#10506)
    
    Cherry pick PR erigontech#10452 into the release branch
    
    Co-authored-by: mars <[email protected]>
    yperbasis and marshalys authored May 27, 2024
    Configuration menu
    Copy the full SHA
    d3af203 View commit details
    Browse the repository at this point in the history

Commits on May 28, 2024

  1. e2: remove overlapped files only after merge (erigontech#10487)

    Otherwise: if start after `kill -9` in the middle of merge - may remove
    small files of 1 type of file, but leave small files of another type of
    files (which merge was not finished) - and leave node in un-mergable
    state: erigontech#10485
    
    ---------
    
    Co-authored-by: awskii <[email protected]>
    AskAlexSharov and awskii authored May 28, 2024
    Configuration menu
    Copy the full SHA
    608a940 View commit details
    Browse the repository at this point in the history
  2. add flag checking for pruning waypoints (erigontech#10508)

    Cherry pick PR erigontech#10468 into the release branch
    
    Co-authored-by: Mark Holt <[email protected]>
    yperbasis and mh0lt authored May 28, 2024
    Configuration menu
    Copy the full SHA
    e9840ad View commit details
    Browse the repository at this point in the history
  3. Configuration menu
    Copy the full SHA
    9501f93 View commit details
    Browse the repository at this point in the history
  4. add lock to purgeMilestoneIDsList (erigontech#10524)

    Cherry pick PR erigontech#10493 into the release branch
    
    Co-authored-by: Mark Holt <[email protected]>
    yperbasis and mh0lt authored May 28, 2024
    Configuration menu
    Copy the full SHA
    128f015 View commit details
    Browse the repository at this point in the history
  5. polygon/heimdall: fix checkpoint json marshalling (erigontech#10530)

    Fixes a recent regression causing unwinds due to checkpoints having zero
    root hash:
    ```
    [WARN] [05-18|23:58:54.662] [bor] Root hash mismatch while whitelisting checkpoint expected=ac1c57270479250af3ce8eee90075cd8b2ba1bac55353105e063d9a4c87c743e got=0000000000000000000000000000000000000000000000000000000000000000
    [WARN] [05-18|23:58:54.662] [bor] Rewinding chain due to checkpoint root hash mismatch number=57125727
    ```
    
    Note this has already been fixed on Erigon 3 branch but as part of a
    non-related PR -
    https://github.com/ledgerwatch/erigon/pull/10124/files#diff-47d4532f399f2d6a45e6f19944a45c80bac573b4d1b5cb51485d0254229d1b16
    taratorio authored May 28, 2024
    Configuration menu
    Copy the full SHA
    f13762b View commit details
    Browse the repository at this point in the history
  6. Configuration menu
    Copy the full SHA
    13ba619 View commit details
    Browse the repository at this point in the history

Commits on May 29, 2024

  1. Fix capacity for immediate appends (erigontech#10539)

    Cherry pick PR erigontech#10528 into the release branch
    
    Co-authored-by: Shoham Chakraborty <[email protected]>
    yperbasis and shohamc1 authored May 29, 2024
    Configuration menu
    Copy the full SHA
    b672fcb View commit details
    Browse the repository at this point in the history
  2. Configuration menu
    Copy the full SHA
    c33912c View commit details
    Browse the repository at this point in the history
  3. Remove unused binary

    cffls committed May 29, 2024
    Configuration menu
    Copy the full SHA
    116d024 View commit details
    Browse the repository at this point in the history

Commits on May 30, 2024

  1. Configuration menu
    Copy the full SHA
    7a39ee5 View commit details
    Browse the repository at this point in the history

Commits on May 31, 2024

  1. Configuration menu
    Copy the full SHA
    e94cc09 View commit details
    Browse the repository at this point in the history
  2. blobGasPrice should be marshalled as hex (erigontech#10571)

    Cherry pick PR erigontech#10551 into the release branch
    yperbasis authored May 31, 2024
    Configuration menu
    Copy the full SHA
    efed89b View commit details
    Browse the repository at this point in the history
  3. Caplin: Fixed reforwarding of Bls Execution changes (erigontech#10577)

    Cherry pick PR erigontech#10546 into the release branch
    
    Co-authored-by: Giulio rebuffo <[email protected]>
    yperbasis and Giulio2002 authored May 31, 2024
    Configuration menu
    Copy the full SHA
    c3fcd76 View commit details
    Browse the repository at this point in the history
  4. Caplin: Proper "Normalization" of length of ForkVersions to 8 hex cha…

    …racters (erigontech#10578)
    
    Cherry pick PR erigontech#10512 into the release branch
    
    Co-authored-by: Giulio rebuffo <[email protected]>
    yperbasis and Giulio2002 authored May 31, 2024
    Configuration menu
    Copy the full SHA
    2e3d061 View commit details
    Browse the repository at this point in the history
  5. Caplin: Update BlobSidecars Beacon API endpoint to the latest specs (e…

    …rigontech#10580)
    
    Cherry pick PR erigontech#10576 into the release branch
    
    Co-authored-by: Giulio rebuffo <[email protected]>
    yperbasis and Giulio2002 authored May 31, 2024
    Configuration menu
    Copy the full SHA
    b29d137 View commit details
    Browse the repository at this point in the history

Commits on Jun 1, 2024

  1. wip

    rachit77 committed Jun 1, 2024
    Configuration menu
    Copy the full SHA
    ca6db9e View commit details
    Browse the repository at this point in the history

Commits on Jun 3, 2024

  1. Configuration menu
    Copy the full SHA
    5e28231 View commit details
    Browse the repository at this point in the history
  2. Configuration menu
    Copy the full SHA
    fb025dd View commit details
    Browse the repository at this point in the history
  3. bor blocks retire: infinity loop fix (erigontech#10596)

    Problem: `+1` was added to maxBlockNum instead of minBlockNum
    for: erigontech#10554
    AskAlexSharov authored Jun 3, 2024
    Configuration menu
    Copy the full SHA
    5bbcc7a View commit details
    Browse the repository at this point in the history
  4. add modes in acl db

    rachit77 committed Jun 3, 2024
    Configuration menu
    Copy the full SHA
    09c512a View commit details
    Browse the repository at this point in the history
  5. refactored code

    rachit77 committed Jun 3, 2024
    Configuration menu
    Copy the full SHA
    aa4b8a4 View commit details
    Browse the repository at this point in the history
  6. acl cli

    goran-ethernal committed Jun 3, 2024
    Configuration menu
    Copy the full SHA
    c8eead9 View commit details
    Browse the repository at this point in the history
  7. Uts

    goran-ethernal committed Jun 3, 2024
    Configuration menu
    Copy the full SHA
    807bc91 View commit details
    Browse the repository at this point in the history
  8. Revert "Uts"

    This reverts commit 807bc91.
    
    Revert "acl cli"
    
    This reverts commit c8eead9.
    
    Revert "refactored code"
    
    This reverts commit aa4b8a4.
    
    Revert "add modes in acl db"
    
    This reverts commit 09c512a.
    
    Revert "wip"
    
    This reverts commit ca6db9e.
    goran-ethernal committed Jun 3, 2024
    Configuration menu
    Copy the full SHA
    dc1d9ba View commit details
    Browse the repository at this point in the history
  9. Configuration menu
    Copy the full SHA
    3de2f4b View commit details
    Browse the repository at this point in the history
  10. bor blocks retire: infinity loop fix (erigontech#10596)

    Problem: `+1` was added to maxBlockNum instead of minBlockNum
    for: erigontech#10554
    AskAlexSharov authored and anshalshukla committed Jun 3, 2024
    Configuration menu
    Copy the full SHA
    5456bf8 View commit details
    Browse the repository at this point in the history
  11. Configuration menu
    Copy the full SHA
    d460a0a View commit details
    Browse the repository at this point in the history

Commits on Jun 4, 2024

  1. Configuration menu
    Copy the full SHA
    9471c44 View commit details
    Browse the repository at this point in the history

Commits on Jun 5, 2024

  1. Configuration menu
    Copy the full SHA
    4fff093 View commit details
    Browse the repository at this point in the history
  2. Configuration menu
    Copy the full SHA
    d04796e View commit details
    Browse the repository at this point in the history

Commits on Jun 10, 2024

  1. Fix potential p2p shutdown hangup (erigontech#10626)

    This is a fix for: 
    
    erigontech#10192
    
    This fixes is a deadlock in v4_udp.go where 
    * Thread A waits on mutex.Lock() in resetTimeout() called after reading
    listUpdate channel.
    * Thread B waits on listUpdate <- plist.PushBack(p) called after locking
    mutex.Lock()
      
    This fix decouples the list operations which need locking from the
    channel operations which don't by storing the changes in local
    variables. These updates are used for resetting a timeout - which is not
    order dependent.
    mh0lt authored Jun 10, 2024
    Configuration menu
    Copy the full SHA
    2222a11 View commit details
    Browse the repository at this point in the history

Commits on Jun 13, 2024

  1. Configuration menu
    Copy the full SHA
    c637e37 View commit details
    Browse the repository at this point in the history

Commits on Jun 14, 2024

  1. rpc: Fix incorrect txfeecap (erigontech#10643)

    Cherry pick PR erigontech#10636 to
    Erigon 2
    shohamc1 authored Jun 14, 2024
    Configuration menu
    Copy the full SHA
    fabed0c View commit details
    Browse the repository at this point in the history

Commits on Jun 17, 2024

  1. Configuration menu
    Copy the full SHA
    cac1c2d View commit details
    Browse the repository at this point in the history
  2. Configuration menu
    Copy the full SHA
    1704658 View commit details
    Browse the repository at this point in the history

Commits on Jun 18, 2024

  1. qa-tests: backport to release/2.60 improvements made to e3 github act…

    …ion workflows (erigontech#10778)
    
    This PR backports improvements that we added to the E3 tests: recording
    runner name and db version used for testing on MongoDB database.
    mriccobene authored Jun 18, 2024
    Configuration menu
    Copy the full SHA
    4fb2ef4 View commit details
    Browse the repository at this point in the history
  2. Configuration menu
    Copy the full SHA
    9f8efdf View commit details
    Browse the repository at this point in the history

Commits on Jun 19, 2024

  1. Fix tests

    cffls committed Jun 19, 2024
    Configuration menu
    Copy the full SHA
    b9e35ec View commit details
    Browse the repository at this point in the history
  2. Fix docker file and make file

    cffls committed Jun 19, 2024
    Configuration menu
    Copy the full SHA
    d1691a8 View commit details
    Browse the repository at this point in the history
  3. Fix configs

    cffls committed Jun 19, 2024
    Configuration menu
    Copy the full SHA
    dd90479 View commit details
    Browse the repository at this point in the history
  4. Configuration menu
    Copy the full SHA
    4efd289 View commit details
    Browse the repository at this point in the history
  5. Configuration menu
    Copy the full SHA
    efcf0d3 View commit details
    Browse the repository at this point in the history
  6. Configuration menu
    Copy the full SHA
    c67af18 View commit details
    Browse the repository at this point in the history
  7. Enable CI in upstream-merge PRs

    cffls committed Jun 19, 2024
    Configuration menu
    Copy the full SHA
    cb2213c View commit details
    Browse the repository at this point in the history
  8. Configuration menu
    Copy the full SHA
    8ac70a1 View commit details
    Browse the repository at this point in the history

Commits on Jun 20, 2024

  1. Configuration menu
    Copy the full SHA
    c19b034 View commit details
    Browse the repository at this point in the history
  2. Update ubuntu version in CI

    cffls committed Jun 20, 2024
    Configuration menu
    Copy the full SHA
    a767ed4 View commit details
    Browse the repository at this point in the history

Commits on Jun 21, 2024

  1. Merge pull request #526 from anshalshukla/includes-2.60-zkevm-upstream

    Includes 2.60 zkevm upstream
    cffls authored Jun 21, 2024
    Configuration menu
    Copy the full SHA
    0b58c5a View commit details
    Browse the repository at this point in the history
  2. Configuration menu
    Copy the full SHA
    847d786 View commit details
    Browse the repository at this point in the history
  3. Configuration menu
    Copy the full SHA
    79d0182 View commit details
    Browse the repository at this point in the history
  4. diagnostics: move E3 changes to E2 (erigontech#10806)

    Merged all the work done from main branch to keep diagnostics up to
    date.
    dvovk authored Jun 21, 2024
    Configuration menu
    Copy the full SHA
    2e590ce View commit details
    Browse the repository at this point in the history
  5. Configuration menu
    Copy the full SHA
    e8c5632 View commit details
    Browse the repository at this point in the history
  6. Fix NewPayload Validation during header download (erigontech#10837)

    Cherry pick PR erigontech#10093 into the release branch
    
    Co-authored-by: Minhyuk Kim <[email protected]>
    yperbasis and mininny authored Jun 21, 2024
    Configuration menu
    Copy the full SHA
    478b5b2 View commit details
    Browse the repository at this point in the history
  7. Configuration menu
    Copy the full SHA
    478d144 View commit details
    Browse the repository at this point in the history

Commits on Jun 24, 2024

  1. Fix gas fee calculation for debug calls (erigontech#10880)

    Cherry pick PR erigontech#10825 into the release branch
    
    Co-authored-by: Minhyuk Kim <[email protected]>
    yperbasis and mininny authored Jun 24, 2024
    Configuration menu
    Copy the full SHA
    2fcf653 View commit details
    Browse the repository at this point in the history
  2. Configuration menu
    Copy the full SHA
    d109bea View commit details
    Browse the repository at this point in the history

Commits on Jun 25, 2024

  1. Configuration menu
    Copy the full SHA
    aa591fd View commit details
    Browse the repository at this point in the history
  2. Configuration menu
    Copy the full SHA
    22232cc View commit details
    Browse the repository at this point in the history
  3. Change CI branches

    cffls committed Jun 25, 2024
    Configuration menu
    Copy the full SHA
    20e4481 View commit details
    Browse the repository at this point in the history
  4. Configuration menu
    Copy the full SHA
    5b0c32a View commit details
    Browse the repository at this point in the history
  5. Configuration menu
    Copy the full SHA
    2f41075 View commit details
    Browse the repository at this point in the history

Commits on Jun 26, 2024

  1. Add bridge test to CI

    cffls committed Jun 26, 2024
    Configuration menu
    Copy the full SHA
    2664054 View commit details
    Browse the repository at this point in the history

Commits on Jun 27, 2024

  1. Configuration menu
    Copy the full SHA
    a80e5e4 View commit details
    Browse the repository at this point in the history
  2. Remove matrix

    cffls committed Jun 27, 2024
    Configuration menu
    Copy the full SHA
    cc2b2fa View commit details
    Browse the repository at this point in the history
  3. Configuration menu
    Copy the full SHA
    1a25aff View commit details
    Browse the repository at this point in the history

Commits on Jun 28, 2024

  1. Changing Caplin Finality Checkpoint API response to match spec (erigo…

    …ntech#10944)
    
    Cherry pick PR erigontech#10843 into the release branch
    
    Co-authored-by: Angus Scott <[email protected]>
    yperbasis and angusscott authored Jun 28, 2024
    Configuration menu
    Copy the full SHA
    d983933 View commit details
    Browse the repository at this point in the history
  2. Add zero check in tx.Sender func (erigontech#10737)

    This is an additional check as erigontech#9990 could not be reliably reproduced.
    The conjecture is that at some point there is a race condition somewhere
    related to either storing snapshot file for an older block or updating
    the DB for a more recent block.
    Somewhere the code sets sender value directly to zero or overwrites a
    pointer, leading to sender address being incorrectly assigned to ZERO.
    somnathb1 authored Jun 28, 2024
    Configuration menu
    Copy the full SHA
    b7942be View commit details
    Browse the repository at this point in the history

Commits on Jul 1, 2024

  1. Add Normalcy hardfork (#676)

    * Add Normalcy fork
    
    * Add a few missed functions
    cffls authored Jul 1, 2024
    Configuration menu
    Copy the full SHA
    854d206 View commit details
    Browse the repository at this point in the history

Commits on Jul 2, 2024

  1. eth/tracers: fix prestate tracer bug with create with value (erigonte…

    …ch#10960)
    
    fixes erigontech#9531
    
    Changes:
    - fixes a bug with the prestate tracer where we were incorrectly
    subtracting the value of a transaction from the "to" address balance in
    the "pre" state (should not be done for CREATE calls)
    - fixes a bug with the prestate tracer where we were incorrectly adding
    the value of a transaction to the "from" address balance in the "pre"
    state (should not be done for CREATE calls)
    - fixes a bug with the prestate tracer where we were incorrectly
    decrementing the nonce value of a transaction's "from" address in the
    "pre" state (should not be done for CREATE calls)
    - adds a test generator that can generate the test files for us based on
    real life transaction hash and node rpc url - check README
    https://github.com/ledgerwatch/erigon/blob/fix-prestate-tracer-on-create-e2/eth/tracers/internal/tracetest/testgenerator/README.md
    - adds test cases
    - fixes some existing test cases that were setup with incorrect data
    taratorio authored Jul 2, 2024
    Configuration menu
    Copy the full SHA
    30cae52 View commit details
    Browse the repository at this point in the history

Commits on Jul 3, 2024

  1. eth/tracers: add optional includePrecompiles flag to callTracer - def…

    …ault true is preserved (erigontech#10986)
    
    relates to erigontech#9784
    
    - Adds support for an optional `"includePrecompiles"` tracer config
    option for `callTracer` that users can use to control behaviour
    (previous default of including precompile traces is preserved)
    - Adds tests for default and for `"includePrecompiles": false` based on
    https://etherscan.io/tx/0x536434786ace02697118c44abf2835f188bf79902807c61a523ca3a6200bc350
    taratorio authored Jul 3, 2024
    Configuration menu
    Copy the full SHA
    4193e03 View commit details
    Browse the repository at this point in the history
  2. Configuration menu
    Copy the full SHA
    7055c2c View commit details
    Browse the repository at this point in the history

Commits on Jul 4, 2024

  1. turbo/jsonrpc: add optional includePrecompiles flag to trace_* apis (e…

    …rigontech#10979)
    
    relates to erigontech#9784
    
    - Adds support for an optional `"includePrecompiles"` tracer config
    option for our OeTracer (OpenEthereum) that users can use to match
    output of debug_* apis with callTracer (by default it includes
    precompiles). Note default spec for OpenEthereum traces are to not
    include precompiles - this is preserved by this PR
    - Note geth has support for `"includePrecompiles"` so we are getting
    more aligned as well -
    https://github.com/ethereum/go-ethereum/blob/master/eth/tracers/native/call_flat.go#L124
    - Adds tests for OeTracer
    taratorio authored Jul 4, 2024
    Configuration menu
    Copy the full SHA
    9710e98 View commit details
    Browse the repository at this point in the history
  2. eth/tracers: always pop precompiles stack in callTracer (erigontech#1…

    …1004)
    
    made a mistake in previous PR
    erigontech#10986
    should always pop the precompiles stack for correctness
    taratorio authored Jul 4, 2024
    Configuration menu
    Copy the full SHA
    1a050db View commit details
    Browse the repository at this point in the history
  3. Configuration menu
    Copy the full SHA
    eb7db79 View commit details
    Browse the repository at this point in the history
  4. Configuration menu
    Copy the full SHA
    8d6a173 View commit details
    Browse the repository at this point in the history
  5. Diagnostics: loglevel (erigontech#11015)

    Changed log level
    dvovk authored Jul 4, 2024
    Configuration menu
    Copy the full SHA
    1417f89 View commit details
    Browse the repository at this point in the history
  6. Configuration menu
    Copy the full SHA
    fd4f1ac View commit details
    Browse the repository at this point in the history
  7. Configuration menu
    Copy the full SHA
    b4dd12e View commit details
    Browse the repository at this point in the history

Commits on Jul 8, 2024

  1. qa-tests: add Tip-Tracking test for Gnosis (erigontech#11053)

    This add a Tip-Tracking test on Erigon v2 for Gnosis chain/network
    mriccobene authored Jul 8, 2024
    Configuration menu
    Copy the full SHA
    bebd788 View commit details
    Browse the repository at this point in the history
  2. Configuration menu
    Copy the full SHA
    1f73ed5 View commit details
    Browse the repository at this point in the history
  3. Configuration menu
    Copy the full SHA
    d4dbe19 View commit details
    Browse the repository at this point in the history
  4. Configuration menu
    Copy the full SHA
    668307e View commit details
    Browse the repository at this point in the history
  5. Configuration menu
    Copy the full SHA
    bcea43d View commit details
    Browse the repository at this point in the history

Commits on Jul 12, 2024

  1. Configuration menu
    Copy the full SHA
    0c6a84a View commit details
    Browse the repository at this point in the history

Commits on Jul 23, 2024

  1. Configuration menu
    Copy the full SHA
    8ffbaba View commit details
    Browse the repository at this point in the history
  2. Configuration menu
    Copy the full SHA
    269c9ec View commit details
    Browse the repository at this point in the history

Commits on Jul 25, 2024

  1. Fix unit test

    cffls committed Jul 25, 2024
    Configuration menu
    Copy the full SHA
    314996b View commit details
    Browse the repository at this point in the history

Commits on Aug 5, 2024

  1. Configuration menu
    Copy the full SHA
    e734e51 View commit details
    Browse the repository at this point in the history

Commits on Aug 6, 2024

  1. Configuration menu
    Copy the full SHA
    7ae2c6d View commit details
    Browse the repository at this point in the history

Commits on Aug 9, 2024

  1. Configuration menu
    Copy the full SHA
    e89c7e8 View commit details
    Browse the repository at this point in the history
  2. Fix kurtosis in CI

    cffls committed Aug 9, 2024
    Configuration menu
    Copy the full SHA
    9bc8a1d View commit details
    Browse the repository at this point in the history

Commits on Aug 23, 2024

  1. Configuration menu
    Copy the full SHA
    a52bc75 View commit details
    Browse the repository at this point in the history

Commits on Aug 30, 2024

  1. Configuration menu
    Copy the full SHA
    9b4b63c View commit details
    Browse the repository at this point in the history

Commits on Sep 5, 2024

  1. Configuration menu
    Copy the full SHA
    7fd0978 View commit details
    Browse the repository at this point in the history

Commits on Sep 9, 2024

  1. Configuration menu
    Copy the full SHA
    d2cc2c4 View commit details
    Browse the repository at this point in the history

Commits on Sep 10, 2024

  1. Disable blob tx (#1150)

    cffls authored Sep 10, 2024
    Configuration menu
    Copy the full SHA
    87fa5ac View commit details
    Browse the repository at this point in the history

Commits on Sep 17, 2024

  1. Configuration menu
    Copy the full SHA
    d2f950a View commit details
    Browse the repository at this point in the history

Commits on Sep 23, 2024

  1. Configuration menu
    Copy the full SHA
    1571d71 View commit details
    Browse the repository at this point in the history

Commits on Sep 25, 2024

  1. Configuration menu
    Copy the full SHA
    55ed010 View commit details
    Browse the repository at this point in the history

Commits on Sep 26, 2024

  1. Configuration menu
    Copy the full SHA
    32d0174 View commit details
    Browse the repository at this point in the history

Commits on Oct 1, 2024

  1. Configuration menu
    Copy the full SHA
    811b973 View commit details
    Browse the repository at this point in the history
  2. Configuration menu
    Copy the full SHA
    5aac9c9 View commit details
    Browse the repository at this point in the history

Commits on Oct 2, 2024

  1. Configuration menu
    Copy the full SHA
    03c0aa1 View commit details
    Browse the repository at this point in the history
  2. Configuration menu
    Copy the full SHA
    2a57c69 View commit details
    Browse the repository at this point in the history
  3. Bump kurtosis version

    cffls committed Oct 2, 2024
    Configuration menu
    Copy the full SHA
    5541e94 View commit details
    Browse the repository at this point in the history

Commits on Oct 5, 2024

  1. Remove auto claim

    cffls committed Oct 5, 2024
    Configuration menu
    Copy the full SHA
    500812d View commit details
    Browse the repository at this point in the history

Commits on Oct 7, 2024

  1. Configuration menu
    Copy the full SHA
    dd237b6 View commit details
    Browse the repository at this point in the history
  2. Configuration menu
    Copy the full SHA
    71fd49e View commit details
    Browse the repository at this point in the history
  3. Fix stage_batches bug

    cffls committed Oct 7, 2024
    Configuration menu
    Copy the full SHA
    ef89a9d View commit details
    Browse the repository at this point in the history
  4. Fix unwind ci

    cffls committed Oct 7, 2024
    Configuration menu
    Copy the full SHA
    8110af0 View commit details
    Browse the repository at this point in the history
  5. Fix RPC doc check ci

    cffls committed Oct 7, 2024
    Configuration menu
    Copy the full SHA
    5e1cd28 View commit details
    Browse the repository at this point in the history

Commits on Oct 8, 2024

  1. Fix unwind ci build

    cffls committed Oct 8, 2024
    Configuration menu
    Copy the full SHA
    be67448 View commit details
    Browse the repository at this point in the history

Commits on Oct 9, 2024

  1. Merge branch 'zkevm' into zkevm-2.60

    # Conflicts:
    #	zk/stages/stage_sequence_execute_blocks.go
    hexoscott committed Oct 9, 2024
    Configuration menu
    Copy the full SHA
    30887e1 View commit details
    Browse the repository at this point in the history