1. 05 Jan, 2021 7 commits
  2. 04 Jan, 2021 6 commits
  3. 30 Dec, 2020 1 commit
  4. 27 Dec, 2020 9 commits
  5. 23 Dec, 2020 2 commits
  6. 21 Dec, 2020 2 commits
  7. 17 Dec, 2020 1 commit
  8. 15 Dec, 2020 2 commits
  9. 14 Dec, 2020 3 commits
  10. 12 Dec, 2020 2 commits
  11. 11 Dec, 2020 5 commits
    • Martin Holst Swende's avatar
      core, eth, les: implement unclean-shutdown marker (#21893) · 4d48980e
      Martin Holst Swende authored
      This PR implements unclean shutdown marker. Every time geth boots, it adds a timestamp to a list of timestamps in the database. This list is capped at 10. At a clean shutdown, the timestamp is removed again. 
      Thus, when geth exits unclean, the marker remains, and at boot up we show the most recent unclean shutdowns to the user, which makes it easier to diagnose root-causes to certain problems. 
      Co-authored-by: 's avatarNagy Salem <me@muhnagy.com>
      4d48980e
    • Mr-Leshiy's avatar
    • Martin Holst Swende's avatar
      consensus/ethash: implement faster difficulty calculators (#21976) · efe6dd29
      Martin Holst Swende authored
      This PR adds re-written difficulty calculators, which are based on uint256. It also adds a fuzzer + oss-fuzz integration for the new fuzzer. It does differential fuzzing between the new and old calculators.
      
      Note: this PR does not actually enable the new calculators.
      efe6dd29
    • gary rong's avatar
      core/txpool: remove "local" notion from the txpool price heap (#21478) · 88c69624
      gary rong authored
      * core: separate the local notion from the pricedHeap
      
      * core: add benchmarks
      
      * core: improve tests
      
      * core: address comments
      
      * core: degrade the panic to error message
      
      * core: fix typo
      
      * core: address comments
      
      * core: address comment
      
      * core: use PEAK instead of POP
      
      * core: address comments
      88c69624
    • Mudit Gupta's avatar
      cmd/faucet: use Twitter API instead of scraping webpage (#21850) · b47f4ca5
      Mudit Gupta authored
      This PR adds support for using Twitter API to query the tweet and author details. There are two reasons behind this change:
      
      - Twitter will be deprecating the legacy website on 15th December. The current method is expected to stop working then.
      - More importantly, the current system uses Twitter handle for spam protection but the Twitter handle can be changed via automated calls. This allows bots to use the same tweet to withdraw funds infinite times as long as they keep changing their handle between every request. The Rinkeby as well as the Goerli faucet are being actively drained via this method. This PR changes the spam protection to be based on Twitter IDs instead of usernames. A user can not change their Twitter ID.
      b47f4ca5