good morning!!!!

Skip to content
Snippets Groups Projects
  1. Oct 16, 2015
  2. Oct 12, 2015
  3. Oct 07, 2015
  4. Oct 03, 2015
    • Jeffrey Wilcke's avatar
      cmd/geth, cmd/utils, core, rpc: renamed to blockchain · 7c769293
      Jeffrey Wilcke authored
      * Renamed ChainManager to BlockChain
      * Checkpointing is no longer required and never really properly worked
      when the state was corrupted.
      7c769293
    • Jeffrey Wilcke's avatar
      cmd/evm, core/vm, test: refactored VM and core · 361082ec
      Jeffrey Wilcke authored
      * Moved `vm.Transfer` to `core` package and changed execution to call
      `env.Transfer` instead of `core.Transfer` directly.
      * core/vm: byte code VM moved to jump table instead of switch
      * Moved `vm.Transfer` to `core` package and changed execution to call
        `env.Transfer` instead of `core.Transfer` directly.
      * Byte code VM now shares the same code as the JITVM
      * Renamed Context to Contract
      * Changed initialiser of state transition & unexported methods
      * Removed the Execution object and refactor `Call`, `CallCode` &
        `Create` in to their own functions instead of being methods.
      * Removed the hard dep on the state for the VM. The VM now
        depends on a Database interface returned by the environment. In the
        process the core now depends less on the statedb by usage of the env
      * Moved `Log` from package `core/state` to package `core/vm`.
      361082ec
  5. Oct 02, 2015
    • Jeffrey Wilcke's avatar
      core, event/filter, xeth: refactored filter system · f7a71996
      Jeffrey Wilcke authored
      Moved the filtering system from `event` to `eth/filters` package and
      removed the `core.Filter` object. The `filters.Filter` object now
      requires a `common.Database` rather than a `eth.Backend` and invokes the
      `core.GetBlockByX` directly rather than thru a "manager".
      f7a71996
  6. Sep 25, 2015
    • Jeffrey Wilcke's avatar
      xeth: fixed nil pointer of filter retrieval · b9359981
      Jeffrey Wilcke authored
      This fix addresses an issue with filters that were (possibly) not yet
      added to the filter queues but were expected. I've added additional nil
      checks making sure it doesn't crash and swapped the installation of the
      filter around so it's installed before use.
      
      Closes #1665
      b9359981
  7. Sep 11, 2015
  8. Aug 25, 2015
  9. Aug 16, 2015
  10. Aug 14, 2015
    • Jeffrey Wilcke's avatar
      xeth: added a transact mu · 7bb5ac04
      Jeffrey Wilcke authored
      Added a transact mutex. The transact mutex will fix an issue where
      transactions were created with the same nonce resulting in some
      transactions being dropped. This happened when two concurrent calls
      would call the `Transact` method (which is OK) which would both call
      `GetNonce`. While the managed is thread safe it does not help us in this
      case.
      7bb5ac04
  11. Aug 12, 2015
  12. Aug 07, 2015
  13. Jul 29, 2015
  14. Jul 23, 2015
  15. Jul 22, 2015
  16. Jul 20, 2015
  17. Jul 16, 2015
  18. Jul 13, 2015
  19. Jul 08, 2015
  20. Jul 07, 2015
  21. Jul 06, 2015
  22. Jul 05, 2015
  23. Jul 04, 2015
  24. Jul 03, 2015
  25. Jul 02, 2015
  26. Jun 30, 2015
  27. Jun 29, 2015
Loading