good morning!!!!

Skip to content
Snippets Groups Projects
  1. May 07, 2020
  2. May 06, 2020
  3. May 05, 2020
  4. May 04, 2020
  5. May 01, 2020
  6. Apr 30, 2020
  7. Apr 29, 2020
    • Péter Szilágyi's avatar
    • Gary Rong's avatar
      core/state/snapshot: implement storage iterator (#20971) · 26d271df
      Gary Rong authored
      * core/state/snapshot: implement storage iterator
      
      * core/state/snapshot, tests: implement helper function
      
      * core/state/snapshot: fix storage issue
      
      If an account is deleted in the tx_1 but recreated in the tx_2,
      the it can happen that in this diff layer, both destructedSet
      and storageData records this account. In this case, the storage
      iterator should be able to iterate the slots belong to new account
      but disable further iteration in deeper layers(belong to old account)
      
      * core/state/snapshot: address peter and martin's comment
      
      * core/state: address comments
      
      * core/state/snapshot: fix test
      26d271df
  8. Apr 28, 2020
  9. Apr 27, 2020
    • Julian Y's avatar
      rpc: make ExampleClientSubscription work with the geth API (#19483) · 5c399344
      Julian Y authored
      
      This corrects the call to eth_getBlockByNumber, which previously
      returned this error:
      
        can't get latest block: missing value for required argument 1
      
      Co-authored-by: default avatarFelix Lange <fjl@twurst.com>
      5c399344
    • Boqin Qin's avatar
      core: add check in AddChildIndexer to avoid double lock (#20982) · ba068d40
      Boqin Qin authored
      
      This fixes a theoretical double lock condition which could occur in
      
          indexer.AddChildIndexer(indexer)
      
      Nobody would ever do that though.
      
      Co-authored-by: default avatarFelix Lange <fjl@twurst.com>
      ba068d40
    • Marius van der Wijden's avatar
      accounts/abi: added abi test cases, minor bug fixes (#20903) · e32ee6ac
      Marius van der Wijden authored
      * accounts/abi: added documentation
      
      * accounts/abi: reduced usage of arguments.LengthNonIndexed
      
      * accounts/abi: simplified reflection logic
      
      * accounts/abi: moved testjson data into global declaration
      
      * accounts/abi: removed duplicate test cases
      
      * accounts/abi: reworked abi tests
      
      * accounts/abi: added more tests for abi packing
      
      * accounts/abi/bind: refactored base tests
      
      * accounts/abi: run pack tests as subtests
      
      * accounts/abi: removed duplicate tests
      
      * accounts/abi: removed unnused arguments.LengthNonIndexed
      
      Due to refactors to the code, we do not need the arguments.LengthNonIndexed function anymore.
      You can still get the length by calling len(arguments.NonIndexed())
      
      * accounts/abi: added type test
      
      * accounts/abi: modified unpack test to pack test
      
      * accounts/abi: length check on arrayTy
      
      * accounts/abi: test invalid abi
      
      * accounts/abi: fixed rebase error
      
      * accounts/abi: fixed rebase errors
      
      * accounts/abi: removed unused definition
      
      * accounts/abi: merged packing/unpacking tests
      
      * accounts/abi: fixed [][][32]bytes encoding
      
      * accounts/abi: added tuple test cases
      
      * accounts/abi: renamed getMockLog -> newMockLog
      
      * accounts/abi: removed duplicate test
      
      * accounts/abi: bools -> booleans
      e32ee6ac
    • Steven E. Harris's avatar
      node: shut down all node-related HTTP servers gracefully (#20956) · 40283d05
      Steven E. Harris authored
      Rather than just closing the underlying network listener to stop our
      HTTP servers, use the graceful shutdown procedure, waiting for any
      in-process requests to finish.
      40283d05
Loading