- Dec 21, 2017
-
-
Péter Szilágyi authored
* cmd, core, eth/tracers: support fancier js tracing * eth, internal/web3ext: rework trace API, concurrency, chain tracing * eth/tracers: add three more JavaScript tracers * eth/tracers, vendor: swap ottovm to duktape for tracing * core, eth, internal: finalize call tracer and needed extras * eth, tests: prestate tracer, call test suite, rewinding * vendor: fix windows builds for tracer js engine * vendor: temporary duktape fix * eth/tracers: fix up 4byte and evmdis tracer * vendor: pull in latest duktape with my upstream fixes * eth: fix some review comments * eth: rename rewind to reexec to make it more obvious * core/vm: terminate tracing using defers
-
Péter Szilágyi authored
params: add Rinkeby bootnode from Akasha
-
Péter Szilágyi authored
-
Steven Roose authored
ethkey is a new tool that serves as a command line interface to the basic key management functionalities of geth. It currently supports: - generating keyfiles - inspecting keyfiles (print public and private key) - signing messages - verifying signed messages
-
Bob Glickstein authored
This change inlines the logic of bytesAreProper at its sole callsite, ABI.Unpack, and applies the multiple-of-32 test only in the case of unpacking methods. Event data is not required to be a multiple of 32 bytes long.
-
Vlad Gluhovsky authored
Changed the communication protocol for ordinary message, according to EIP 627. Messages will be send in bundles, i.e. array of messages will be sent instead of single message.
-
Péter Szilágyi authored
-
Péter Szilágyi authored
-
- Dec 20, 2017
-
-
Kurkó Mihály authored
-
Dmitry Shulyak authored
Fixes #15617
-
Felix Lange authored
* crypto: ensure that VerifySignature rejects malleable signatures It already rejected them when using libsecp256k1, make sure the nocgo version does the same thing. * crypto: simplify check * crypto: fix build
-
Péter Szilágyi authored
-
- Dec 19, 2017
-
-
Armin Braun authored
Fixes #15672 by creating the datadir when creating the console. This prevents failing to save the history if no datadir exists.
-
Janoš Guljaš authored
* swarm/api: url scheme bzz-list for getting list of files from manifest Replace query parameter list=true for listing all files contained in a swarm manifest with a new URL scheme bzz-list. * swarm: replaace bzzr and bzzi schemes with bzz-raw and bzz-immutable New URI Shemes are added and old ones are deprecated, but not removed. Old Schemes bzzr and bzzi are functional for backward compatibility. * swarm/api: completely remove bzzr and bzzi schemes Remove old schemes in favour of bzz-raw and bzz-immutable. * swarm/api: revert "completely remove bzzr and bzzi schemes" Keep bzzr and bzzi schemes for backward compatibility. At least until 0.3 swarm release.
-
Péter Szilágyi authored
contracts/release: do not print error log if les backend has no peers
-
- Dec 18, 2017
-
-
Zsolt Felföldi authored
-
Péter Szilágyi authored
core/vm: Remove snapshot param from Interpreter.Run()
-
Felix Lange authored
The tx data field is called "input" in returned objects and "data" in argument objects. Make it so "input" can be used, but bail if both are set.
-
Péter Szilágyi authored
accounts/keystore: Improved error message
-
Armin Braun authored
* Fix for #15668
-
Péter Szilágyi authored
p2p/discover: fix leaked goroutine in data expiration
-
Péter Szilágyi authored
cmd/geth: add support for geth --rinkeby attach
-
ferhat elmas authored
-
- Dec 15, 2017
-
-
Sorin Neacsu authored
-
Paweł Bylica authored
-
Felix Lange authored
This adds the inverse to DecompressPubkey and improves a few minor details in crypto/secp256k1.
-
- Dec 14, 2017
-
-
Péter Szilágyi authored
crypto: Fix comment typo
-
George Ornbo authored
-
rhaps107 authored
Fixes #15408 Fixes #14432
-
Péter Szilágyi authored
consensus/ethash: relax requirements when determining future-blocks
-
- Dec 13, 2017
-
-
Felix Lange authored
-
- Dec 12, 2017
-
-
Vitaly V authored
-
holisticode authored
This commit adds mocker functionality to p2p/simulations. A mocker allows to starting/stopping of nodes via the HTTP API.
-
Zach authored
-
yoza authored
-
- Dec 11, 2017
-
-
holisticode authored
This commit adds a TOML configuration option to swarm. It reuses the TOML configuration structure used in geth with swarm customized items. The commit: * Adds a "dumpconfig" command to the swarm executable which allows printing the (default) configuration to stdout, which then can be redirected to a file in order to customize it. * Adds a "--config <file>" option to the swarm executable which will allow to load a configuration file in TOML format from the specified location in order to initialize the Swarm node The override priorities are like follows: environment variables override command line arguments override config file override default config.
-
Felix Lange authored
With this change, key, err := crypto.HexToECDSA("000000...") returns nil key and an error instead of a non-nil key with nil X and Y inside. Issue found by @guidovranken.
-
Felix Lange authored
Issue found by @guidovranken
-
Guillaume Ballet authored
Now that the AES salt has been moved to the payload, padding must be adjusted to hide it, lest an attacker guesses that the packet uses symmetric encryption.
-
- Dec 09, 2017
-
-
Michael Ruminer authored
-