1. 10 Mar, 2015 3 commits
  2. 09 Mar, 2015 21 commits
  3. 08 Mar, 2015 11 commits
  4. 07 Mar, 2015 5 commits
    • obscuren's avatar
      Bump v · 69920c73
      obscuren authored
      69920c73
    • obscuren's avatar
      Updated ethereum.js · e26ebc31
      obscuren authored
      e26ebc31
    • Felix Lange's avatar
      accounts: fix uses of sync.RWMutex · d6a73329
      Felix Lange authored
      RWMutexes must be write-locked when writing in order
      to actually protect the writes.
      d6a73329
    • Felix Lange's avatar
      accounts: use time.Duration correctly · afc530ea
      Felix Lange authored
      There is no point to using time.Duration if the value is interpreted as
      milliseconds. Callers should use the standard multiplication idiom to
      choose the unit. In fact, the only caller outside of the tests already
      does so.
      afc530ea
    • Felix Lange's avatar
      accounts: use pointers consistently · fda7b4c7
      Felix Lange authored
      Account is now always a non-pointer. This will be important once
      the manager starts remembering accounts.
      
      AccountManager is now always a pointer because it contains locks
      and locks cannot be copied.
      fda7b4c7