good morning!!!!

Skip to content
Snippets Groups Projects
  1. Dec 12, 2016
  2. Dec 11, 2016
  3. Dec 10, 2016
    • bas-vk's avatar
      build: safe update of PATH on Windows (#3419) · 4f9ccdd7
      bas-vk authored
      NSIS has a default MAX_STR_LEN of 1024. If $ENV{PATH} is longer
      the returned string is truncated to an empty string. Its then not
      possible to distinguis between the variable not set or too long.
      As a result the variable is set with the location where geth and/or
      dev tools are installed. This may override any previous set values.
      4f9ccdd7
    • bas-vk's avatar
      core: bugfix state change race condition in txpool (#3412) · 4e36b1e3
      bas-vk authored
      The transaction pool keeps track of the current nonce in its local pendingState. When a
      new block comes in the pendingState is reset. During the reset it fetches multiple times
      the current state through the use of the currentState callback. When a second block comes
      in during the reset its possible that the state changes during the reset. If that block
      holds transactions that are currently in the pool the local pendingState that is used to
      determine nonces can get out of sync.
      4e36b1e3
  4. Dec 08, 2016
  5. Dec 06, 2016
    • Jeffrey Wilcke's avatar
      core, core/vm: implemented a generic environment (#3348) · 3fc7c978
      Jeffrey Wilcke authored
      Environment is now a struct (not an interface). This
      reduces a lot of tech-debt throughout the codebase where a virtual
      machine environment had to be implemented in order to test or run it.
      
      The new environment is suitable to be used en the json tests, core
      consensus and light client.
      3fc7c978
  6. Dec 05, 2016
  7. Dec 04, 2016
  8. Dec 01, 2016
  9. Nov 30, 2016
  10. Nov 29, 2016
  11. Nov 28, 2016
Loading