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

Draft release v1.4.15 #2701

Merged
merged 21 commits into from
Sep 19, 2024
Merged

Draft release v1.4.15 #2701

merged 21 commits into from
Sep 19, 2024

Commits on Sep 3, 2024

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

Commits on Sep 4, 2024

  1. beaconserver: simulated beacon api server for op-stack (#2678)

    only some necessary apis are implemented.
    jhgdike authored Sep 4, 2024
    Configuration menu
    Copy the full SHA
    094519d View commit details
    Browse the repository at this point in the history
  2. txpool: apply miner's gasceil to txpool (#2680)

    apply `Eth.Miner.GasCeil` to TxPool even the node did not enable `--mine` option
    Otherwise, there could be accmulated pending transactions in txpool.
    Take an example:
    - Currently, BSC testnet's block gaslimit is 70M, as 20M gas is reserved for
      SystemTxs, the maximum acceptable GasLimit for transaction is 50M.
    - TxPool recevied a transaction with GasLimit 60M, it would be accepted in TxPool but it
      will never be accepted by validators. Such kinds of transactions will be kept in txpool
      and gradually make the txpool overflowed
    zzzckck authored Sep 4, 2024
    Configuration menu
    Copy the full SHA
    0dab664 View commit details
    Browse the repository at this point in the history
  3. Configuration menu
    Copy the full SHA
    f85d19a View commit details
    Browse the repository at this point in the history
  4. Configuration menu
    Copy the full SHA
    5c4096f View commit details
    Browse the repository at this point in the history
  5. Configuration menu
    Copy the full SHA
    1bcdad8 View commit details
    Browse the repository at this point in the history
  6. fetcher: Sleep after marking block as done when requeuing

    Otherwise the node will be waiting for 500ms before the block fetcher
    keeps processing.
    ngotchac committed Sep 4, 2024
    Configuration menu
    Copy the full SHA
    03069a7 View commit details
    Browse the repository at this point in the history

Commits on Sep 5, 2024

  1. txpool: set default GasCeil from 30M to 0 (#2688)

    This PR tries to improve #2680
    If the node did not set `Eth.Miner` in config.toml, the default GasCeil
    will be 30000000, it is not an accurate number for both BSC mainnet and testnet.
    Set it to 0 means disable the transaction GasLimit check, i.e. the TxPool will
    accept transactions with any GasLimit size.
    zzzckck authored Sep 5, 2024
    Configuration menu
    Copy the full SHA
    e7e5d50 View commit details
    Browse the repository at this point in the history

Commits on Sep 10, 2024

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

Commits on Sep 11, 2024

  1. Configuration menu
    Copy the full SHA
    8bbd8fb View commit details
    Browse the repository at this point in the history
  2. Configuration menu
    Copy the full SHA
    774d1b7 View commit details
    Browse the repository at this point in the history

Commits on Sep 12, 2024

  1. Configuration menu
    Copy the full SHA
    44e91bb View commit details
    Browse the repository at this point in the history
  2. Configuration menu
    Copy the full SHA
    282aee5 View commit details
    Browse the repository at this point in the history

Commits on Sep 14, 2024

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

Commits on Sep 18, 2024

  1. Configuration menu
    Copy the full SHA
    34059cb View commit details
    Browse the repository at this point in the history
  2. Configuration menu
    Copy the full SHA
    21faa2d View commit details
    Browse the repository at this point in the history
  3. doc: update readme to remove Beacon chain part (#2697)

    others changes:
      - remove bsc-docker, as it is broken
      - remove light client, as it is no longer supported
    zzzckck authored Sep 18, 2024
    Configuration menu
    Copy the full SHA
    9cbac84 View commit details
    Browse the repository at this point in the history
  4. Configuration menu
    Copy the full SHA
    d141ff0 View commit details
    Browse the repository at this point in the history
  5. Configuration menu
    Copy the full SHA
    5289ecd View commit details
    Browse the repository at this point in the history

Commits on Sep 19, 2024

  1. Merge pull request #2683 from buddh0/remove_duplicate_list_check

    eth/handler: remove duplicate check for lists in body
    zzzckck authored Sep 19, 2024
    Configuration menu
    Copy the full SHA
    089064c View commit details
    Browse the repository at this point in the history