1. 13 Jul, 2020 1 commit
  2. 10 Jul, 2020 3 commits
  3. 09 Jul, 2020 3 commits
  4. 08 Jul, 2020 3 commits
  5. 07 Jul, 2020 3 commits
  6. 06 Jul, 2020 2 commits
  7. 04 Jul, 2020 1 commit
  8. 03 Jul, 2020 2 commits
    • meowsbits's avatar
      cmd/geth: allow configuring metrics HTTP server on separate endpoint (#21290) · 490b380a
      meowsbits authored
      Exposing /debug/metrics and /debug/metrics/prometheus was dependent
      on --pprof, which also exposes other HTTP APIs. This change makes it possible
      to run the metrics server on an independent endpoint without enabling pprof.
      490b380a
    • gary rong's avatar
      eth/gasprice: lighter gas price oracle for light client (#20409) · 61270e5e
      gary rong authored
      This PR reduces the bandwidth used by the light client to compute the
      recommended gas price. The current mechanism for suggesting the price is:
      
      - retrieve recent 20 blocks
      - get the lowest gas price of these blocks
      - sort the price array and return the middle(60%) one
      
      This works for full nodes, which have all blocks available locally.
      However, this is very expensive for the light client because the light
      client needs to retrieve block bodies from the network.
      
      The PR changes the default options for light client. With the new config,
      the light client only retrieves the two latest blocks, but in order to
      collect more sample transactions, the 3 lowest prices are collected from
      each block.
      
      This PR also changes the behavior for empty blocks. If the block is empty,
      the lastest price is reused for sampling.
      61270e5e
  9. 02 Jul, 2020 3 commits
  10. 01 Jul, 2020 4 commits
  11. 30 Jun, 2020 7 commits
  12. 26 Jun, 2020 1 commit
  13. 24 Jun, 2020 7 commits