good morning!!!!

Skip to content
Snippets Groups Projects
  1. Mar 23, 2016
  2. Mar 22, 2016
  3. Mar 15, 2016
  4. Mar 11, 2016
    • Jeffrey Wilcke's avatar
      core: added future proc mutex lock · 558d18d2
      Jeffrey Wilcke authored
      Added a future lock which prevents the anything being added or removed
      from or to the set when looping over the set of blocks. This fixes a nil
      pointer in the range loop when trying to retrieve a block from the set
      which was previously available but removed due to regular chain
      processing.
      
      Fixes #2305
      558d18d2
  5. Mar 10, 2016
  6. Mar 09, 2016
  7. Mar 08, 2016
    • Jeffrey Wilcke's avatar
      core: announce ChainSideEvent during reorg · ba3fb9e6
      Jeffrey Wilcke authored
      Previously all blocks that were already in our chain were never re
      announced as potential uncle block (e.g. ChainSideEvent). This is
      problematic during mining where you want to gather as much possible
      uncles as possible increasing the profit. This is now addressed in this
      PR where during reorganisations of chains the old chain is regarded as
      uncles.
      
      Fixed #2298
      ba3fb9e6
  8. Feb 29, 2016
  9. Feb 21, 2016
  10. Feb 18, 2016
    • Jeffrey Wilcke's avatar
      core: Added new TD strategy which mitigate the risk for selfish mining · 5b283663
      Jeffrey Wilcke authored
      Assuming the following scenario where a miner has 15% of all hashing
      power and the ability to exert a moderate control over the network to
      the point where if the attacker sees a message A, it can't stop A from
      propagating, but what it **can** do is send a message B and ensure that
      most nodes see B before A. The attacker can then selfish mine and
      augment selfish mining strategy by giving his own blocks an advantage.
      
      This change makes the time at which a block is received less relevant
      and so the level of control an attacker has over the network no longer
      makes a difference.
      
      This change changes the current td algorithm `B_td > C_td` to the new
      algorithm `B_td > C_td || B_td == C_td && rnd < 0.5`.
      5b283663
    • Jeffrey Wilcke's avatar
      core, core/vm, crypto: fixes for homestead · b6d88a0e
      Jeffrey Wilcke authored
      * Removed some strange code that didn't apply state reverting properly
      * Refactored code setting from vm & state transition to the executioner
      * Updated tests
      b6d88a0e
    • Gustav Simonsson's avatar
      parmas, crypto, core, core/vm: homestead consensus protocol changes · 371871d6
      Gustav Simonsson authored
      * change gas cost for contract creating txs
      * invalidate signature with s value greater than secp256k1 N / 2
      * OOG contract creation if not enough gas to store code
      * new difficulty adjustment algorithm
      * new DELEGATECALL op code
      371871d6
  11. Feb 16, 2016
  12. Feb 13, 2016
    • Jeffrey Wilcke's avatar
      eth/filters: :sparkles: pending logs :sparkles: · 987c1a59
      Jeffrey Wilcke authored
      Pending logs are now filterable through the Go API. Filter API changed
      such that each filter type has it's own bucket and adding filter
      explicitly requires you specify the bucket to put it in.
      987c1a59
  13. Feb 11, 2016
  14. Feb 02, 2016
  15. Feb 01, 2016
  16. Jan 22, 2016
  17. Jan 20, 2016
  18. Jan 13, 2016
  19. Jan 11, 2016
  20. Jan 05, 2016
  21. Jan 04, 2016
  22. Dec 18, 2015
  23. Dec 16, 2015
  24. Dec 14, 2015
  25. Dec 04, 2015
  26. Dec 01, 2015
    • Jeffrey Wilcke's avatar
      core: added a new RemovedLogEvent · 9901a40f
      Jeffrey Wilcke authored
      When a chain reorganisation occurs we collect the logs that were deleted
      during the chain reorganisation. The removed logs are posted to the
      event mux indicating that those were deleted during the reorg.
      9901a40f
  27. Nov 27, 2015
Loading