- Sep 02, 2019
-
-
Dimitry Khokhlov authored
-
- Aug 23, 2019
-
-
Péter Szilágyi authored
-
Martin Holst Swende authored
-
- Aug 22, 2019
-
-
SjonHortensius authored
This copies cli.printHelp but changes minwidth to 38. Custom flag code is improved to print the default value using cli.FlagStringer like all built-in flags do.
-
- Aug 19, 2019
-
-
Ben Holden-Crowther authored
-
- Aug 15, 2019
-
-
Gary Rong authored
-
- Aug 12, 2019
-
-
ligi authored
-
SjonHortensius authored
* Ref #19906 - replace passPHRASE with passWORD in any user interactions this skips doccomments and variablenames to minimize impact. It does however include a rename of the `ethkey` `changepassphrase` parameter * console: fix JavaScript error capitalization
-
- Jul 25, 2019
-
-
Frank Szendzielarz authored
* Fixes #19861 - coloured output * cmd/clef: minor formatting nit * cmd/clef: bleah, stupid github editor
-
- Jul 23, 2019
-
-
wbt authored
* Add 5 minute grace period to faucet timeout * cmd/faucet: make grace period dynamic based on original wait time
-
Péter Szilágyi authored
-
- Jul 22, 2019
-
-
Christian Muehlhaeuser authored
Fixed assigning values to variables we don't end up using.
-
Péter Szilágyi authored
-
Christian Muehlhaeuser authored
* Added missing error checks Add error handling where we assign err a value, but don't check for it being nil. * core/rawdb: tiny style nit
-
Kitten King authored
-
- Jul 17, 2019
-
-
大彬 authored
-
- Jul 13, 2019
-
-
jwasinger authored
This adds the debug_accountRange method which returns all accounts in the state for a given block and transaction index.
-
- Jul 11, 2019
-
-
Gary Rong authored
* eth: fix error when dump config with nil checkpoint * cmd/utils: ignore default datadir if it's already set.
-
- Jul 10, 2019
-
-
Péter Szilágyi authored
-
Gary Rong authored
-
- Jul 09, 2019
-
-
Péter Szilágyi authored
-
- Jul 08, 2019
-
-
Gary Rong authored
* cmd/puppeth: integrate blockscout * cmd/puppeth: expose debug namespace for blockscout * cmd/puppeth: fix dbdir * cmd/puppeth: run explorer in archive mode * cmd/puppeth: ensure node is synced * cmd/puppeth: fix explorer docker alignment + drop unneeded exec * cmd/puppeth: polish up config saving and reloading * cmd/puppeth: check both web and p2p port for explorer service
-
Gary Rong authored
* cmd, common: refactor abigen command line interface * cmd/abigen: address comment
-
Guillaume Ballet authored
* accounts, abigen: link dependent libs in deploy * abigen: add java generation * bind: Fix unit tests * abigen: add unit test * Fix CI * Post-rebase fixes * Fix rebase issue * accounts/abi: Gary's review feedback * accounts/abi: More Gary feedback * accounts/abi: minor fixes
-
- Jul 05, 2019
-
-
Guillaume Ballet authored
-
- Jul 03, 2019
-
-
Gary Rong authored
* accounts, cmd, contracts, les: integrate clef for transaction signing * accounts, cmd/checkpoint-admin, signer/core: minor fixups
-
Gary Rong authored
* accounts/abi, cmd/abigen: support tuple accounts/abi/bind, cmd/abigen: add objc back accounts/abi/bind: use byte[24] as function indicator accounts/abi/bind: resolve struct slice or array accounts/abi/bind: remove sort logic accounts: fix issues in abi * accounts/abi: address comment
-
- Jul 02, 2019
-
-
Péter Szilágyi authored
-
Péter Szilágyi authored
* cmd/clef, signer: refresh tutorial, fix noticed issues * cmd/clef, signer: support removing stored keys (delpw + rules) * cmd/clef: polishes + Geth integration in the tutorial
-
Guillaume Ballet authored
* accounts/abi/bind: Accept function ptr parameter They are translated as [24]byte * Add Java template version * accounts/abi/bind: fix merge issue * Fix CI
-
- Jun 28, 2019
-
-
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
-
- Jun 27, 2019
-
-
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
-
- Jun 25, 2019
-
-
Martin Holst Swende authored
* cmd/evm: evm input minor fixes, handle prefix, validate length, fixes #18041 * cmd/evm: remove whitespace
-
- Jun 24, 2019
-
-
Martin Holst Swende authored
* core/state, cmd/geth: streaming json output dump cmd + optional code+storage * dump: add option to continue even if preimages are missing * core, evm: lint nits * cmd: use local flags for dump, omit empty code/storage * core/state: fix state dump test
-
- Jun 20, 2019
-
-
Péter Szilágyi authored
-
- Jun 07, 2019
-
-
Felix Lange authored
* p2p/enr: add entries for for IPv4/IPv6 separation This adds entry types for "ip6", "udp6", "tcp6" keys. The IP type stays around because removing it would break a lot of code and force everyone to care about the distinction. * p2p/enode: track IPv4 and IPv6 address separately LocalNode predicts the local node's UDP endpoint and updates the record. This change makes it predict IPv4 and IPv6 endpoints separately since they can now be in the record at the same time. * p2p/enode: implement base64 text format * all: switch to enode.Parse(...) This allows passing base64-encoded node records to all the places that previously accepted enode:// URLs. The URL format is still supported. * cmd/bootnode, p2p: log node URL instead of ENR ...and return the base64 record in NodeInfo.
-
Felix Lange authored
* p2p/discover: export Ping and RequestENR These two are useful for checking the status of a node. * cmd/devp2p: add devp2p debug tool This is a new tool for debugging p2p issues. It supports a few basic tasks for now, but many more things can and will be added in the near future. devp2p enrdump -- prints ENRs readably devp2p discv4 ping -- checks if a node is up devp2p discv4 requestenr -- gets a node's record devp2p discv4 resolve -- finds a node through the DHT
-
- Jun 05, 2019
-
-
Guillaume Ballet authored
* cmd/clef: Enable smartcard hub * clef: don't error is pcsc is not installed
-
ledgerwatch authored
* Add retesteth command * Remove label and insert full version * mineBlock - break the inner loop when the block is full * Fixes for touched non-reward accounts, gas limit issues * Not fail when SendTx has transaction with incorrect RLP * Fix linter (unnecessary conversion) * retesteth: add usage string to flag
-
- Jun 04, 2019
-
-
Martin Holst Swende authored
-