good morning!!!!

Skip to content
Snippets Groups Projects
  1. Apr 15, 2020
    • Gary Rong's avatar
      accounts/abi: implement new fallback functions (#20764) · 00064ddc
      Gary Rong authored
      
      * accounts/abi: implement new fackball functions
      
      In Solidity v0.6.0, the original fallback is separated
      into two different sub types: fallback and receive.
      
      This PR addes the support for parsing new format abi
      and the relevant abigen functionalities.
      
      * accounts/abi: fix unit tests
      
      * accounts/abi: minor fixes
      
      * accounts/abi, mobile: support jave binding
      
      * accounts/abi: address marius's comment
      
      * accounts/abi: Work around the uin64 conversion issue
      
      Co-authored-by: default avatarGuillaume Ballet <gballet@gmail.com>
      00064ddc
  2. Apr 09, 2020
    • Raw Pong Ghmoa's avatar
      cmd: deprecate --testnet, use named networks instead (#20852) · 15540ae9
      Raw Pong Ghmoa authored
      * cmd/utils: make goerli the default testnet
      
      * cmd/geth: explicitly rename testnet to ropsten
      
      * core: explicitly rename testnet to ropsten
      
      * params: explicitly rename testnet to ropsten
      
      * cmd: explicitly rename testnet to ropsten
      
      * miner: explicitly rename testnet to ropsten
      
      * mobile: allow for returning the goerli spec
      
      * tests: explicitly rename testnet to ropsten
      
      * docs: update readme to reflect changes to the default testnet
      
      * mobile: allow for configuring goerli and rinkeby nodes
      
      * cmd/geth: revert --testnet back to ropsten and mark as legacy
      
      * cmd/util: mark --testnet flag as deprecated
      
      * docs: update readme to properly reflect the 3 testnets
      
      * cmd/utils: add an explicit deprecation warning on startup
      
      * cmd/utils: swap goerli and ropsten in usage
      
      * cmd/geth: swap goerli and ropsten in usage
      
      * cmd/geth: if running a known preset, log it for convenience
      
      * docs: improve readme on usage of ropsten's testnet datadir
      
      * cmd/utils: check if legacy `testnet` datadir exists for ropsten
      
      * cmd/geth: check for legacy testnet path in console command
      
      * cmd/geth: use switch statement for complex conditions in main
      
      * cmd/geth: move known preset log statement to the very top
      
      * cmd/utils: create new ropsten configurations in the ropsten datadir
      
      * cmd/utils: makedatadir should check for existing testnet dir
      
      * cmd/geth: add legacy testnet flag to the copy db command
      
      * cmd/geth: add legacy testnet flag to the inspect command
      15540ae9
  3. Apr 03, 2020
  4. Feb 27, 2020
  5. Nov 20, 2019
  6. Jul 22, 2019
  7. Jul 09, 2019
  8. Jun 27, 2019
    • Gary Rong's avatar
      mobile: fix mobile interface (#19180) · 6069b1a5
      Gary Rong authored
      * mobile: fix mobile interface
      
      * mobile, accounts: generate correct java binding
      
      * accounts: fix java type binding
      
      * mobile: support integer slice
      
      * accounts/abi/bind, cmd/abigen: implement java binding tests
      6069b1a5
  9. Jun 20, 2019
  10. Apr 02, 2019
  11. Feb 07, 2019
  12. Jan 24, 2019
  13. Nov 29, 2018
  14. Sep 03, 2018
  15. Aug 23, 2018
  16. Aug 03, 2018
  17. Jul 30, 2018
    • Anton Evangelatov's avatar
      build: rename swarm deb package to ethereum-swarm; change swarm deb version... · a5d5609e
      Anton Evangelatov authored
      build: rename swarm deb package to ethereum-swarm; change swarm deb version from 1.8.x to 0.3.x (#16988)
      
      * build: add support for different package and binary names
      
      * build: bump up copyright date
      
      * build: change default PackageName to empty string
      
      * build, internal, swarm: enhance build/release process
      
      * build: hack ethereum-swarm as a "depends" in deb package
      
      * build/ci: remove redundant variables
      
      * build, cmd, mobile, params, swarm: remove VERSION file; rename Version to VersionMeta;
      
      * internal: remove VERSION() method which reads VERSION file
      
      * build: fix VersionFilePath to Version
      
      * Makefile: remove clean_go_build_cache.sh until it works
      
      * Makefile: revert removal of clean_go_build_cache.sh
      a5d5609e
  18. Jun 21, 2018
  19. Jun 19, 2018
  20. May 07, 2018
  21. Apr 23, 2018
  22. Apr 19, 2018
  23. Apr 05, 2018
    • Steven Roose's avatar
      core/types: remove String methods from struct types (#16205) · ec8ee611
      Steven Roose authored
      Most of these methods did not contain all the relevant information
      inside the object and were not using a similar formatting type.
      Moreover, the existence of a suboptimal String method breaks usage
      with more advanced data dumping tools like go-spew.
      ec8ee611
  24. Mar 22, 2018
  25. Jan 24, 2018
  26. Jan 23, 2018
  27. Jan 22, 2018
    • Zsolt Felföldi's avatar
      p2p, p2p/discover, p2p/discv5: implement UDP port sharing (#15200) · 92580d69
      Zsolt Felföldi authored
      This commit affects p2p/discv5 "topic discovery" by running it on
      the same UDP port where the old discovery works. This is realized
      by giving an "unhandled" packet channel to the old v4 discovery
      packet handler where all invalid packets are sent. These packets
      are then processed by v5. v5 packets are always invalid when
      interpreted by v4 and vice versa. This is ensured by adding one
      to the first byte of the packet hash in v5 packets.
      
      DiscoveryV5Bootnodes is also changed to point to new bootnodes
      that are implementing the changed packet format with modified
      hash. Existing and new v5 bootnodes are both running on different
      ports ATM.
      92580d69
  28. Jan 03, 2018
  29. Dec 09, 2017
  30. Nov 10, 2017
  31. Nov 06, 2017
  32. Oct 05, 2017
  33. Oct 01, 2017
    • Felix Lange's avatar
      ethclient, mobile: add TransactionSender (#15127) · d78ad226
      Felix Lange authored
      * core/types: make Signer derive address instead of public key
      
      There are two reasons to do this now: The upcoming ethclient signer
      doesn't know the public key, just the address. EIP 208 will introduce a
      new signer which derives the 'entry point' address for transactions with
      zero signature. The entry point has no public key.
      
      Other changes to the interface ease the path make to moving signature
      crypto out of core/types later.
      
      * ethclient, mobile: add TransactionSender
      
      The new method can get the right signer without any crypto, and without
      knowledge of the signature scheme that was used when the transaction was
      included.
      d78ad226
  34. Jul 31, 2017
  35. Jul 17, 2017
    • Elias Naur's avatar
      mobile: don't retain transient []byte in CallMsg.SetData (#14804) · 23c6fcdb
      Elias Naur authored
      * mobile: don't retain transient []byte in CallMsg.SetData
      
      Go mobile doesn't copy []byte parameters, for performance and to allow
      writes to the byte array be reflected in the native byte array.
      Unfortunately, that means []byte arguments are only valid during the
      call it is being passed into.
      
      CallMsg.SetData retains such a byte array. Copy it instead
      
      Fixes #14675
      
      * mobile: copy all []byte arguments from gomobile
      
      To avoid subtle errors when accidentially retaining an otherwise
      transient byte slice coming from gomobile, copy all byte slices before
      use.
      
      * mobile: replace copySlice with common.CopyBytes
      23c6fcdb
    • ligi's avatar
      mobile: use EIP155 signer (#14817) · cf5d4b55
      ligi authored
      * mobile: Use EIP155Signer - closes #14762
      
      * mobile: Correctly fall back on HomesteadSigner when no chainID is passed in
      cf5d4b55
  36. Jun 15, 2017
  37. Jun 13, 2017
Loading