good morning!!!!

Skip to content
Snippets Groups Projects
  1. Sep 16, 2019
  2. Sep 10, 2019
  3. Aug 22, 2019
  4. Aug 15, 2019
  5. Aug 03, 2019
  6. Jul 22, 2019
  7. Jul 17, 2019
    • David Chase's avatar
      common/bitutil: use result of TestBytes to prevent dead code elimination (#19846) · 31a1f164
      David Chase authored
      Gollvm has very aggressive dead code elimination that completely
      removes one of these two benchmarks.  To prevent this, use the
      result of the benchmark (a boolean), and to be "fair", make the
      transformation to both benchmarks.
      
      To be reliably assured of not removing the code, "use" means
      assigning to an exported global.  Non-exported globals and
      //go:noinline functions are possibly subject to this optimization.
      31a1f164
  8. Jul 08, 2019
  9. Jul 02, 2019
  10. Jun 03, 2019
  11. May 27, 2019
  12. May 16, 2019
    • Gary Rong's avatar
      core, cmd, vendor: fixes and database inspection tool (#15) · 37d280da
      Gary Rong authored
      * core, eth: some fixes for freezer
      
      * vendor, core/rawdb, cmd/geth: add db inspector
      
      * core, cmd/utils: check ancient store path forceily
      
      * cmd/geth, common, core/rawdb: a few fixes
      
      * cmd/geth: support windows file rename and fix rename error
      
      * core: support ancient plugin
      
      * core, cmd: streaming file copy
      
      * cmd, consensus, core, tests: keep genesis in leveldb
      
      * core: write txlookup during ancient init
      
      * core: bump database version
      Unverified
      37d280da
  13. Mar 18, 2019
  14. Mar 12, 2019
    • Martin Holst Swende's avatar
      core/vm: 64 bit memory and gas calculations (#19210) · 7504dbd6
      Martin Holst Swende authored
      * core/vm: remove function call for stack validation from evm runloop
      
      * core/vm: separate gas  calc into static + dynamic
      
      * core/vm: optimize push1
      
      * core/vm: reuse pooled bigints for ADDRESS, ORIGIN and CALLER
      
      * core/vm: use generic error message for jump/jumpi, to avoid string interpolation
      
      * testdata: fix tests for new error message
      
      * core/vm: use 64-bit memory calculations
      
      * core/vm: fix error in memory calculation
      
      * core/vm: address review concerns
      
      * core/vm: avoid unnecessary use of big.Int:BitLen()
      7504dbd6
  15. Feb 27, 2019
  16. Feb 21, 2019
  17. Feb 14, 2019
  18. Feb 12, 2019
    • Martin Holst Swende's avatar
      common/fdlimit: cap on MacOS file limits, fixes #18994 (#19035) · f48da43b
      Martin Holst Swende authored
      * common/fdlimit: cap on MacOS file limits, fixes #18994
      
      * common/fdlimit: fix Maximum-check to respect OPEN_MAX
      
      * common/fdlimit: return error if OPEN_MAX is exceeded in Raise()
      
      * common/fdlimit: goimports
      
      * common/fdlimit: check value after setting fdlimit
      
      * common/fdlimit: make comment a bit more descriptive
      
      * cmd/utils: make fdlimit happy path a bit cleaner
      f48da43b
  19. Feb 07, 2019
  20. Feb 03, 2019
  21. Jan 21, 2019
    • Kris Shinn's avatar
      GraphQL master FF for review (#18445) · f91312db
      Kris Shinn authored
      
      * Initial work on a graphql API
      
      * Added receipts, and more transaction fields.
      
      * Finish receipts, add logs
      
      * Add transactionCount to block
      
      * Add types  and .
      
      * Update Block type to be compatible with ethql
      
      * Rename nonce to transactionCount in Account, to be compatible with ethql
      
      * Update transaction, receipt and log to match ethql
      
      * Add  query operator, for a range of blocks
      
      * Added ommerCount to Block
      
      * Add transactionAt and ommerAt to Block
      
      * Added sendRawTransaction mutation
      
      * Add Call and EstimateGas to graphQL API
      
      * Refactored to use hexutil.Bytes instead of HexBytes
      
      * Replace BigNum with hexutil.Big
      
      * Refactor call and estimateGas to use ethapi struct type
      
      * Replace ethgraphql.Address with common.Address
      
      * Replace ethgraphql.Hash with common.Hash
      
      * Converted most quantities to Long instead of Int
      
      * Add support for logs
      
      * Fix bug in runFilter
      
      * Restructured Transaction to work primarily with headers, so uncle data is reported properly
      
      * Add gasPrice API
      
      * Add protocolVersion API
      
      * Add syncing API
      
      * Moved schema into its own source file
      
      * Move some single use args types into anonymous structs
      
      * Add doc-comments
      
      * Fixed backend fetching to use context
      
      * Added (very) basic tests
      
      * Add documentation to the graphql schema
      
      * Fix reversion for formatting of big numbers
      
      * Correct spelling error
      
      * s/BigInt/Long/
      
      * Update common/types.go
      
      * Fixes in response to review
      
      * Fix lint error
      
      * Updated calls on private functions
      
      * Fix typo in graphql.go
      
      * Rollback ethapi breaking changes for graphql support
      Co-Authored-By: default avatarArachnid <arachnid@notdot.net>
      f91312db
  22. Jan 04, 2019
  23. Nov 08, 2018
  24. Oct 18, 2018
    • Simon Jentzsch's avatar
      EIP-1186 eth_getProof (#17737) · 97fb0834
      Simon Jentzsch authored
      * first impl of eth_getProof
      
      * fixed docu
      
      * added comments and refactored based on comments from holiman
      
      * created structs
      
      * handle errors correctly
      
      * change Value to *hexutil.Big in order to have the same output as parity
      
      * use ProofList as return type
      97fb0834
  25. Sep 20, 2018
  26. Sep 14, 2018
  27. Sep 04, 2018
  28. Aug 27, 2018
  29. Aug 14, 2018
    • Zsolt Felföldi's avatar
      les: implement client connection logic (#16899) · b2ddb1fc
      Zsolt Felföldi authored
      This PR implements les.freeClientPool. It also adds a simulated clock
      in common/mclock, which enables time-sensitive tests to run quickly
      and still produce accurate results, and package common/prque which is
      a generalised variant of prque that enables removing elements other
      than the top one from the queue.
      
      les.freeClientPool implements a client database that limits the
      connection time of each client and manages accepting/rejecting
      incoming connections and even kicking out some connected clients. The
      pool calculates recent usage time for each known client (a value that
      increases linearly when the client is connected and decreases
      exponentially when not connected). Clients with lower recent usage are
      preferred, unknown nodes have the highest priority. Already connected
      nodes receive a small bias in their favor in order to avoid accepting
      and instantly kicking out clients.
      
      Note: the pool can use any string for client identification. Using
      signature keys for that purpose would not make sense when being known
      has a negative value for the client. Currently the LES protocol
      manager uses IP addresses (without port address) to identify clients.
      b2ddb1fc
  30. Jul 24, 2018
  31. Jun 14, 2018
  32. Jun 05, 2018
    • Antonio Salazar Cardozo's avatar
      cmd/abigen: support for reading solc output from stdin (#16683) · 4cf2b411
      Antonio Salazar Cardozo authored
      Allow the --abi flag to be given - to indicate that it should read the
      ABI information from standard input. It expects to read the solc output
      with the --combined-json flag providing bin, abi, userdoc, devdoc, and
      metadata, and works very similarly to the internal invocation of solc,
      except it allows external invocation of solc.
      
      This facilitates integration with more complex solc invocations, such
      as invocations that require path remapping or --allow-paths tweaks.
      
      Simple usage example:
      
          solc --combined-json bin,abi,userdoc,devdoc,metadata *.sol | abigen --abi -
      4cf2b411
  33. May 29, 2018
  34. May 07, 2018
  35. Apr 18, 2018
  36. Apr 16, 2018
    • Martin Holst Swende's avatar
      cmd/clef, signer: initial poc of the standalone signer (#16154) · ec3db0f5
      Martin Holst Swende authored
      * signer: introduce external signer command
      
      * cmd/signer, rpc: Implement new signer. Add info about remote user to Context
      
      * signer: refactored request/response, made use of urfave.cli
      
      * cmd/signer: Use common flags
      
      * cmd/signer: methods to validate calldata against abi
      
      * cmd/signer: work on abi parser
      
      * signer: add mutex around UI
      
      * cmd/signer: add json 4byte directory, remove passwords from api
      
      * cmd/signer: minor changes
      
      * cmd/signer: Use ErrRequestDenied, enable lightkdf
      
      * cmd/signer: implement tests
      
      * cmd/signer: made possible for UI to modify tx parameters
      
      * cmd/signer: refactors, removed channels in ui comms, added UI-api via stdin/out
      
      * cmd/signer: Made lowercase json-definitions, added UI-signer test functionality
      
      * cmd/signer: update documentation
      
      * cmd/signer: fix bugs, improve abi detection, abi argument display
      
      * cmd/signer: minor change in json format
      
      * cmd/signer: rework json communication
      
      * cmd/signer: implement mixcase addresses in API, fix json id bug
      
      * cmd/signer: rename fromaccount, update pythonpoc with new json encoding format
      
      * cmd/signer: make use of new abi interface
      
      * signer: documentation
      
      * signer/main: remove redundant  option
      
      * signer: implement audit logging
      
      * signer: create package 'signer', minor changes
      
      * common: add 0x-prefix to mixcaseaddress in json marshalling + validation
      
      * signer, rules, storage: implement rules + ephemeral storage for signer rules
      
      * signer: implement OnApprovedTx, change signing response (API BREAKAGE)
      
      * signer: refactoring + documentation
      
      * signer/rules: implement dispatching to next handler
      
      * signer: docs
      
      * signer/rules: hide json-conversion from users, ensure context is cleaned
      
      * signer: docs
      
      * signer: implement validation rules, change signature of call_info
      
      * signer: fix log flaw with string pointer
      
      * signer: implement custom 4byte databsae that saves submitted signatures
      
      * signer/storage: implement aes-gcm-backed credential storage
      
      * accounts: implement json unmarshalling of url
      
      * signer: fix listresponse, fix gas->uint64
      
      * node: make http/ipc start methods public
      
      * signer: add ipc capability+review concerns
      
      * accounts: correct docstring
      
      * signer: address review concerns
      
      * rpc: go fmt -s
      
      * signer: review concerns+ baptize Clef
      
      * signer,node: move Start-functions to separate file
      
      * signer: formatting
      ec3db0f5
  37. Apr 10, 2018
    • Felix Lange's avatar
      common: delete StringToAddress, StringToHash (#16436) · c7ab3e55
      Felix Lange authored
      * common: delete StringToAddress, StringToHash
      
      These functions are confusing because they don't parse hex, but use the
      bytes of the string. This change removes them, replacing all uses of
      StringToAddress(s) by BytesToAddress([]byte(s)).
      
      * eth/filters: remove incorrect use of common.BytesToAddress
      c7ab3e55
Loading