good morning!!!!

Skip to content
Snippets Groups Projects
  1. Aug 03, 2018
    • Gary Rong's avatar
      consensus/ethash: move remote agent logic to ethash internal (#15853) · 51db5975
      Gary Rong authored
      * consensus/ethash: start remote ggoroutine to handle remote mining
      
      * consensus/ethash: expose remote miner api
      
      * consensus/ethash: expose submitHashrate api
      
      * miner, ethash: push empty block to sealer without waiting execution
      
      * consensus, internal: add getHashrate API for ethash
      
      * consensus: add three method for consensus interface
      
      * miner: expose consensus engine running status to miner
      
      * eth, miner: specify etherbase when miner created
      
      * miner: commit new work when consensus engine is started
      
      * consensus, miner: fix some logics
      
      * all: delete useless interfaces
      
      * consensus: polish a bit
      51db5975
  2. Jul 24, 2018
  3. Jul 16, 2018
  4. Jul 12, 2018
  5. Jul 09, 2018
  6. Jul 04, 2018
  7. Jun 04, 2018
    • Felix Lange's avatar
      consensus/ethash: reduce keccak hash allocations (#16857) · 3f33a7c8
      Felix Lange authored
      Use Read instead of Sum to avoid internal allocations and
      copying the state.
      
      name                      old time/op  new time/op  delta
      CacheGeneration-8          764ms ± 1%   579ms ± 1%  -24.22%  (p=0.000 n=20+17)
      SmallDatasetGeneration-8  75.2ms ±12%  60.6ms ±10%  -19.37%  (p=0.000 n=20+20)
      HashimotoLight-8          1.58ms ±11%  1.55ms ± 8%     ~     (p=0.322 n=20+19)
      HashimotoFullSmall-8      4.90µs ± 1%  4.88µs ± 1%   -0.31%  (p=0.013 n=19+18)
      3f33a7c8
  8. May 19, 2018
  9. May 09, 2018
  10. May 07, 2018
  11. May 03, 2018
  12. Apr 17, 2018
  13. Mar 05, 2018
  14. Feb 27, 2018
  15. Feb 23, 2018
    • Anton Evangelatov's avatar
      metrics: pull library and introduce ResettingTimer and InfluxDB reporter (#15910) · ae9f9722
      Anton Evangelatov authored
      * go-metrics: fork library and introduce ResettingTimer and InfluxDB reporter.
      
      * vendor: change nonsense/go-metrics to ethersphere/go-metrics
      
      * go-metrics: add tests. move ResettingTimer logic from reporter to type.
      
      * all, metrics: pull in metrics package in go-ethereum
      
      * metrics/test: make sure metrics are enabled for tests
      
      * metrics: apply gosimple rules
      
      * metrics/exp, internal/debug: init expvar endpoint when starting pprof server
      
      * internal/debug: tiny comment formatting fix
      ae9f9722
  16. Feb 05, 2018
  17. Jan 23, 2018
    • Felix Lange's avatar
      consensus/ethash: improve cache/dataset handling (#15864) · 924065e1
      Felix Lange authored
      * consensus/ethash: add maxEpoch constant
      
      * consensus/ethash: improve cache/dataset handling
      
      There are two fixes in this commit:
      
      Unmap the memory through a finalizer like the libethash wrapper did. The
      release logic was incorrect and freed the memory while it was being
      used, leading to crashes like in #14495 or #14943.
      
      Track caches and datasets using simplelru instead of reinventing LRU
      logic. This should make it easier to see whether it's correct.
      
      * consensus/ethash: restore 'future item' logic in lru
      
      * consensus/ethash: use mmap even in test mode
      
      This makes it possible to shorten the time taken for TestCacheFileEvict.
      
      * consensus/ethash: shuffle func calc*Size comments around
      
      * consensus/ethash: ensure future cache/dataset is in the lru cache
      
      * consensus/ethash: add issue link to the new test
      
      * consensus/ethash: fix vet
      
      * consensus/ethash: fix test
      
      * consensus: tiny issue + nitpick fixes
      924065e1
  18. Jan 10, 2018
  19. Jan 03, 2018
  20. Dec 31, 2017
  21. Dec 22, 2017
  22. Dec 12, 2017
  23. Dec 08, 2017
  24. Nov 24, 2017
  25. Nov 21, 2017
  26. Nov 10, 2017
  27. Oct 24, 2017
  28. Oct 13, 2017
  29. Oct 10, 2017
  30. Sep 14, 2017
  31. Aug 24, 2017
  32. Aug 07, 2017
  33. Jul 11, 2017
    • Felix Lange's avatar
      tests: update tests and implement general state tests (#14734) · 225de7ca
      Felix Lange authored
      Tests are now included as a submodule. This should make updating easier
      and removes ~60MB of JSON data from the working copy.
      
      State tests are replaced by General State Tests, which run the same test
      with multiple fork configurations.
      
      With the new test runner, consensus tests are run as subtests by walking
      json files. Many hex issues have been fixed upstream since the last
      update and most custom parsing code is replaced by existing JSON hex
      types. Tests can now be marked as 'expected failures', ensuring that
      fixes for those tests will trigger an update to test configuration. The
      new test runner also supports parallel execution and the -short flag.
      225de7ca
  34. Jun 30, 2017
  35. Jun 23, 2017
  36. Jun 20, 2017
  37. Jun 14, 2017
Loading