good morning!!!!

Skip to content
Snippets Groups Projects
  1. Aug 12, 2019
  2. Aug 08, 2019
    • Gary Rong's avatar
      graphql, internal/ethapi: support overriding accounts in eth_call (#19917) · c9cdf144
      Gary Rong authored
      * graphql, internal/ethapi: extend eth_call
      
      This PR offers the third option parameter for eth_call API.
      Caller can specify a batch of contracts for overriding the
      original account metadata(nonce, balance, code, state).
      It has a few advantages:
      
      * It's friendly for debugging
      * It's can make on-chain contract lighter for getting rid of
        state access functions
      
      * core, internal: address comments
      c9cdf144
    • Martin Holst Swende's avatar
      Eip 1344 (ChainID opcode) (#19921) · 081642ed
      Martin Holst Swende authored
      * core/vm: implement EIP 1344 (ChainID opcode)
      
      * core/vm: formatting
      081642ed
    • Martin Holst Swende's avatar
      Eip 1884 v3 (#19743) · 3e993ff6
      Martin Holst Swende authored
      
      * core/vm, tests: implement EIP 1884, add support for feature-tests
      
      * core/vm: 1884-changes to extcodehash, move selfbalance opcode
      
      * tests: fix statetests
      
      * core/vm: move constants, address review concerns
      
      * core/vm: word formatting
      
      Co-Authored-By: default avatarPéter Szilágyi <peterke@gmail.com>
      3e993ff6
  3. Aug 07, 2019
  4. Aug 06, 2019
    • Antonio Salazar Cardozo's avatar
      params, core/vm: Istanbul EIP-1108 bn256 gas cost reduction (#19904) · beff5fa5
      Antonio Salazar Cardozo authored
      * params: add IsIstanbul to config + rules
      
      IstanbulBlock, used to determine if the config IsIstanbul, is currently
      left nil until an actual block is chosen.
      
      * params, core/vm: implement EIP-1108
      
      Old gas costs for elliptic curve operations are given the PreIstanbul
      prefix, while current gas costs retain the unprefixed names. The actual
      precompile implementations are the same, so they are factored out into
      common functions that are called by the pre-Istanbul and current
      precompile structs. Finally, an Istanbul precompile list is added that
      references the new precompile structs, which in turn reference the new
      gas costs.
      
      * params: fix fork ordering, add missing chain compatibility check
      beff5fa5
  5. Aug 05, 2019
    • Martin Holst Swende's avatar
      core/vm, params: refactor chain configuration (#19735) · aa6005b4
      Martin Holst Swende authored
      * params, core/vm: deprecating gastable, part 1
      
      * core/vm, params: deprecate gastable, use both constant and dynamic gas
      
      * core/vm, params: remove gastable, remove copypaste
      
      * core/vm: make use of the chainrules
      
      * interpreter: make tracing count constant+dynamic gas
      
      * core/vm: review concerns (param/method name changes)
      
      * core/vm: make use of chainrules more
      aa6005b4
  6. Jul 22, 2019
  7. Jul 18, 2019
  8. Jul 17, 2019
  9. Jul 09, 2019
  10. Jul 08, 2019
  11. Jul 03, 2019
    • Gary Rong's avatar
      core: fix receipt insertion (#19764) · ca6c8c2a
      Gary Rong authored
      ca6c8c2a
    • Gary Rong's avatar
      core: fix chain indexer (#19786) · 802074cb
      Gary Rong authored
      This PR fixes an issue in chain indexer. Currently chain indexer will
      validate whether the stored data is canonical by comparing section head
      and canonical hash. But the header of the checkpoint may not exist in
      the database. We should skip validation for sections below the
      checkpoint.
      802074cb
  12. Jul 02, 2019
  13. Jun 28, 2019
    • Gary Rong's avatar
      all: on-chain oracle checkpoint syncing (#19543) · f7cdea2b
      Gary Rong authored
      * all: implement simple checkpoint syncing
      
      cmd, les, node: remove callback mechanism
      
      cmd, node: remove callback definition
      
      les: simplify the registrar
      
      les: expose checkpoint rpc services in the light client
      
      les, light: don't store untrusted receipt
      
      cmd, contracts, les: discard stale checkpoint
      
      cmd, contracts/registrar: loose restriction of registeration
      
      cmd, contracts: add replay-protection
      
      all: off-chain multi-signature contract
      
      params: deploy checkpoint contract for rinkeby
      
      cmd/registrar: add raw signing mode for registrar
      
      cmd/registrar, contracts/registrar, les: fixed messages
      
      * cmd/registrar, contracts/registrar: fix lints
      
      * accounts/abi/bind, les: address comments
      
      * cmd, contracts, les, light, params: minor checkpoint sync cleanups
      
      * cmd, eth, les, light: move checkpoint config to config file
      
      * cmd, eth, les, params: address comments
      
      * eth, les, params: address comments
      
      * cmd: polish up the checkpoint admin CLI
      
      * cmd, contracts, params: deploy new version contract
      
      * cmd/checkpoint-admin: add another flag for clef mode signing
      
      * cmd, contracts, les: rename and regen checkpoint oracle with abigen
      f7cdea2b
  14. Jun 24, 2019
  15. Jun 21, 2019
    • Felix Lange's avatar
      core: move TxPool reorg and events to background goroutine (#19705) · 60c062e1
      Felix Lange authored
      * core: move TxPool reorg and events to background goroutine
      
      This change moves internal queue re-shuffling work in TxPool to a
      background goroutine, TxPool.runReorg. Requests to execute runReorg are
      accumulated by the new scheduleReorgLoop. The new loop also accumulates
      transaction events.
      
      The motivation for this change is making sends to txFeed synchronous
      instead of sending them in one-off goroutines launched by 'add' and
      'promoteExecutables'. If a downstream consumer of txFeed is blocked for
      a while, reorg requests and events will queue up.
      
      * core: remove homestead check in TxPool
      
      This change removes tracking of the homestead block number from TxPool.
      The homestead field was used to enforce minimum gas of 53000 for
      contract creations after the homestead fork, but not before it. Since
      nobody would want configure a non-homestead chain nowadays and contract
      creations usually take more than 53000 gas, the extra correctness is
      redundant and can be removed.
      
      * core: fixes for review comments
      
      * core: remove BenchmarkPoolInsert
      
      This is useless now because there is no separate code path for
      individual transactions anymore.
      
      * core: fix pending counter metric
      
      * core: fix pool tests
      
      * core: dedup txpool announced events, discard stales
      
      * core: reorg tx promotion/demotion to avoid weird pending gaps
      60c062e1
  16. Jun 12, 2019
  17. Jun 11, 2019
  18. Jun 10, 2019
  19. May 30, 2019
  20. May 27, 2019
  21. May 25, 2019
  22. May 16, 2019
Loading