good morning!!!!

Skip to content
Snippets Groups Projects
  1. Aug 07, 2021
    • Martin Holst Swende's avatar
      core: check if sender is EOA (#23303) · 0658712f
      Martin Holst Swende authored
      This adds a check to verify that a sender-account does not have code, which means that the codehash is either `emptyCodeHash` _OR_ not present. The latter occurs IFF the sender did not previously exist, a situation which can only occur with zero cost gasprices. 
      0658712f
  2. Jul 27, 2021
  3. Jul 22, 2021
  4. Jul 15, 2021
  5. Jul 13, 2021
  6. Jul 08, 2021
  7. Jul 06, 2021
  8. Jul 02, 2021
  9. Jul 01, 2021
  10. Jun 30, 2021
  11. Jun 28, 2021
    • Zsolt Felföldi's avatar
      eth/gasprice: implement feeHistory API (#23033) · 35dbf7a8
      Zsolt Felföldi authored
      
      * eth/gasprice: implement feeHistory API
      
      * eth/gasprice: factored out resolveBlockRange
      
      * eth/gasprice: add sanity check for missing block
      
      * eth/gasprice: fetch actual gas used from receipts
      
      * miner, eth/gasprice: add PendingBlockAndReceipts
      
      * internal/ethapi: use hexutil.Big
      
      * eth/gasprice: return error when requesting beyond head block
      
      * eth/gasprice: fixed tests and return errors correctly
      
      * eth/gasprice: rename receiver name
      
      * eth/gasprice: return directly if blockCount == 0
      
      Co-authored-by: default avatarrjl493456442 <garyrong0905@gmail.com>
      35dbf7a8
    • Sina Mahmoodi's avatar
      core, eth: fix precompile addresses for tracers (#23097) · 1b5582ac
      Sina Mahmoodi authored
      * core,eth/tracers: make isPrecompiled dependent on HF
      
      * eth/tracers: use keys when constructing chain config struct
      
      * eth/tracers: dont initialize activePrecompiles with random value
      1b5582ac
  12. Jun 25, 2021
  13. Jun 24, 2021
  14. Jun 15, 2021
  15. Jun 10, 2021
  16. Jun 08, 2021
  17. Jun 04, 2021
  18. Jun 03, 2021
  19. Jun 02, 2021
    • Martin Holst Swende's avatar
      core, eth, internal, les: RPC methods and fields for EIP 1559 (#22964) · 5cff9754
      Martin Holst Swende authored
      
      * internal/ethapi: add baseFee to RPCMarshalHeader
      
      * internal/ethapi: add FeeCap, Tip and correct GasPrice to EIP-1559 RPCTransaction results
      
      * core,eth,les,internal: add support for tip estimation in gas price oracle
      
      * internal/ethapi,eth/gasprice: don't suggest tip larger than fee cap
      
      * core/types,internal: use correct eip1559 terminology for json marshalling
      
      * eth, internal/ethapi: fix rebase problems
      
      * internal/ethapi: fix rpc name of basefee
      
      * internal/ethapi: address review concerns
      
      * core, eth, internal, les: simplify gasprice oracle (#25)
      
      * core, eth, internal, les: simplify gasprice oracle
      
      * eth/gasprice: fix typo
      
      * internal/ethapi: minor tweak in tx args
      
      * internal/ethapi: calculate basefee for pending block
      
      * internal/ethapi: fix panic
      
      * internal/ethapi, eth/tracers: simplify txargs ToMessage
      
      * internal/ethapi: remove unused param
      
      * core, eth, internal: fix regressions wrt effective gas price in the evm
      
      * eth/gasprice: drop weird debug println
      
      * internal/jsre/deps: hack in 1559 gas conversions into embedded web3
      
      * internal/jsre/deps: hack basFee to decimal conversion
      
      * internal/ethapi: init feecap and tipcap for legacy txs too
      
      * eth, graphql, internal, les: fix gas price suggestion on all combos
      
      * internal/jsre/deps: handle decimal tipcap and feecap
      
      * eth, internal: minor review fixes
      
      * graphql, internal: export max fee cap RPC endpoint
      
      * internal/ethapi: fix crash in transaction_args
      
      * internal/ethapi: minor refactor to make the code safer
      
      Co-authored-by: default avatarRyan Schneider <ryanleeschneider@gmail.com>
      Co-authored-by: default avatarlightclient@protonmail.com <lightclient@protonmail.com>
      Co-authored-by: default avatargary rong <garyrong0905@gmail.com>
      Co-authored-by: default avatarPéter Szilágyi <peterke@gmail.com>
      5cff9754
  20. May 31, 2021
  21. May 28, 2021
  22. May 27, 2021
  23. May 25, 2021
    • Gary Rong's avatar
      internal/ethapi: merge CallArgs and SendTxArgs (#22718) · 51b32cc7
      Gary Rong authored
      
      There are two transaction parameter structures defined in
      the codebase, although for different purposes. But most of
      the parameters are shared. So it's nice to reduce the code
      duplication by merging them together.
      
      Co-authored-by: default avatarMartin Holst Swende <martin@swende.se>
      51b32cc7
    • Felix Lange's avatar
      eth: unregister peer only when handler exits (#22908) · 836c647b
      Felix Lange authored
      This removes the error log message that says 
      
          Ethereum peer removal failed ... err="peer not registered"
      
      The error happened because removePeer was called multiple
      times: once to disconnect the peer, and another time when the
      handler exited. With this change, removePeer now has the sole
      purpose of disconnecting the peer. Unregistering happens exactly
      once, when the handler exits.
      836c647b
  24. May 21, 2021
    • Martin Holst Swende's avatar
      EIP-1559: miner changes (#22896) · a6c46278
      Martin Holst Swende authored
      
      * core/types, miner: create TxWithMinerFee wrapper, add EIP-1559 support to TransactionsByMinerFeeAndNonce
      
      miner: set base fee when creating a new header, handle gas limit, log miner fees
      
      * all: rename to NewTransactionsByPriceAndNonce
      
      * core/types, miner: rename to NewTransactionsByPriceAndNonce + EffectiveTip
      
      miner: activate 1559 for testGenerateBlockAndImport tests
      
      * core,miner: revert naming to TransactionsByPriceAndTime
      
      * core/types/transaction: update effective tip calculation logic
      
      * miner: update aleut to london
      
      * core/types/transaction_test: use correct signer for 1559 txs + add back sender check
      
      * miner/worker: calculate gas target from gas limit
      
      * core, miner: fix block  gas limits for 1559
      
      Co-authored-by: default avatarAnsgar Dietrichs <adietrichs@gmail.com>
      Co-authored-by: default avatarlightclient@protonmail.com <lightclient@protonmail.com>
      a6c46278
  25. May 19, 2021
  26. May 17, 2021
  27. May 12, 2021
  28. May 11, 2021
  29. May 10, 2021
  30. May 06, 2021
  31. May 04, 2021
    • Felix Lange's avatar
      cmd/utils: use eth DNS tree for snap discovery (#22808) · b8040a43
      Felix Lange authored
      This removes auto-configuration of the snap.*.ethdisco.net DNS discovery tree.
      Since measurements have shown that > 75% of nodes in all.*.ethdisco.net support
      snap, we have decided to retire the dedicated index for snap and just use the eth
      tree instead.
      
      The dial iterators of eth and snap now use the same DNS tree in the default configuration,
      so both iterators should use the same DNS discovery client instance. This ensures that
      the record cache and rate limit are shared. Records will not be requested multiple times.
      
      While testing the change, I noticed that duplicate DNS requests do happen even
      when the client instance is shared. This is because the two iterators request the tree
      root, link tree root, and first levels of the tree in lockstep. To avoid this problem, the
      change also adds a singleflight.Group instance in the client. When one iterator
      attempts to resolve an entry which is already being resolved, the singleflight object
      waits for the existing resolve call to finish and returns the entry to both places.
      b8040a43
Loading