good morning!!!!

Skip to content
Snippets Groups Projects
  1. May 26, 2017
  2. Apr 10, 2017
  3. Apr 09, 2017
  4. Mar 22, 2017
  5. Mar 02, 2017
    • Péter Szilágyi's avatar
      Logger updates 3 (#3730) · 9184249b
      Péter Szilágyi authored
      * accounts, cmd, eth, ethdb: port logs over to new system
      
      * ethdb: drop concept of cache distribution between dbs
      
      * eth: fix some log nitpicks to make them nicer
      9184249b
  6. Feb 23, 2017
  7. Jan 26, 2017
  8. Dec 10, 2016
  9. Sep 02, 2016
  10. Jul 25, 2016
  11. Jun 07, 2016
  12. Jun 06, 2016
  13. May 17, 2016
  14. May 09, 2016
    • Felix Lange's avatar
      core, eth, miner: improve shutdown synchronisation · 56ed6152
      Felix Lange authored
      Shutting down geth prints hundreds of annoying error messages in some
      cases. The errors appear because the Stop method of eth.ProtocolManager,
      miner.Miner and core.TxPool is asynchronous. Left over peer sessions
      generate events which are processed after Stop even though the database
      has already been closed.
      
      The fix is to make Stop synchronous using sync.WaitGroup.
      
      For eth.ProtocolManager, in order to make use of WaitGroup safe, we need
      a way to stop new peer sessions from being added while waiting on the
      WaitGroup. The eth protocol Run function now selects on a signaling
      channel and adds to the WaitGroup only if ProtocolManager is not
      shutting down.
      
      For miner.worker and core.TxPool the number of goroutines is static,
      WaitGroup can be used in the usual way without additional
      synchronisation.
      56ed6152
  15. Nov 19, 2015
  16. Oct 28, 2015
  17. Oct 21, 2015
  18. Oct 19, 2015
  19. Oct 03, 2015
  20. Jul 29, 2015
  21. Jul 23, 2015
  22. Jul 22, 2015
  23. Jul 07, 2015
  24. Jun 30, 2015
  25. Jun 18, 2015
  26. Jun 17, 2015
  27. Jun 15, 2015
  28. Jun 10, 2015
  29. Jun 09, 2015
  30. Jun 08, 2015
Loading