1. 14 7月, 2021 2 次提交
  2. 13 7月, 2021 4 次提交
  3. 12 7月, 2021 1 次提交
  4. 09 7月, 2021 3 次提交
  5. 08 7月, 2021 3 次提交
    • M
      core, params: define london block at 12965000 (#23176) · ff4ff30a
      Martin Holst Swende 提交于
      * core, params: define london block at 12965000
      
      * core/forkid: fix test
      ff4ff30a
    • U
      core/types: go generate (#23177) · 00b922fc
      ucwong 提交于
      00b922fc
    • S
      core/types: remove LogForStorage type (#23173) · 75226423
      Sina Mahmoodi 提交于
      The encoding of Log and LogForStorage is exactly the same
      now. After tracking it down it seems like #17106 changed the
      storage schema of logs to be the same as the consensus
      encoding.
      
      Support for the legacy format was dropped in #22852 and if
      I'm not wrong there's no reason anymore to have these two
      equivalent types.
      
      Since the RLP encoding simply contains the first three fields
      of Log, we can also avoid creating a temporary struct for
      encoding/decoding, and use the rlp:"-" tag in Log instead.
      
      Note: this is an API change in core/types. We decided it's OK
      to make this change because LogForStorage is an implementation
      detail of go-ethereum and the type has zero uses outside of
      package core/types.
      Co-authored-by: NFelix Lange <fjl@twurst.com>
      75226423
  6. 07 7月, 2021 3 次提交
  7. 06 7月, 2021 8 次提交
  8. 05 7月, 2021 2 次提交
  9. 02 7月, 2021 2 次提交
  10. 01 7月, 2021 5 次提交
  11. 30 6月, 2021 4 次提交
  12. 29 6月, 2021 2 次提交
  13. 28 6月, 2021 1 次提交
    • F
      eth/gasprice: implement feeHistory API (#23033) · 35dbf7a8
      Felföldi Zsolt 提交于
      * 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: Nrjl493456442 <garyrong0905@gmail.com>
      35dbf7a8