- Nov 19, 2015
-
-
Jeffrey Wilcke authored
Removed the legalese confirmation dialog. This closes #1992
-
Jeffrey Wilcke authored
core, eth, rpc: split out block validator and state processor
-
- Nov 18, 2015
-
-
Jeffrey Wilcke authored
core/vm/runtime: added simple execution runtime
-
Jeffrey Wilcke authored
The runtime environment can be used for simple basic execution of contract code without the requirement of setting up a full stack and operates fully in memory.
-
Jeffrey Wilcke authored
This removes the burden on a single object to take care of all validation and state processing. Now instead the validation is done by the `core.BlockValidator` (`types.Validator`) that takes care of both header and uncle validation through the `ValidateBlock` method and state validation through the `ValidateState` method. The state processing is done by a new object `core.StateProcessor` (`types.Processor`) and accepts a new state as input and uses that to process the given block's transactions (and uncles for rewords) to calculate the state root for the next block (P_n + 1).
-
Felix Lange authored
rpc/api: fix #1986, newIdentity autocomplete
-
Péter Szilágyi authored
-
- Nov 17, 2015
-
-
Jeffrey Wilcke authored
crypto/secp256k1: verify recovery ID before calling libsecp256k1
-
Felix Lange authored
They cause compiler warnings for people who don't have these directories. People with pkgsrc can add the directory through CGO_CFLAGS instead.
-
Felix Lange authored
-
Felix Lange authored
The C library treats the recovery ID as trusted input and crashes the process for invalid values, so it needs to be verified before calling into C. This will inhibit the crash in #1983. Also remove VerifySignature because we don't use it.
-
- Nov 11, 2015
-
-
Jeffrey Wilcke authored
cmd/geth, cmd/utils: surface the light KDF flag to the CLI
-
- Nov 10, 2015
-
-
Péter Szilágyi authored
-
- Nov 06, 2015
-
-
Jeffrey Wilcke authored
rpc/api: fix #1972 api regression (nil eth panic) in attach
-
Péter Szilágyi authored
-
- Nov 05, 2015
-
-
Jeffrey Wilcke authored
event/filter: fix data race in the test
-
Jeffrey Wilcke authored
eth: fix error casting regression during database open
-
Péter Szilágyi authored
-
Péter Szilágyi authored
-
Felix Lange authored
cmd/geth: fix recover command crash if no param is supplied
-
Felix Lange authored
whisper: fix datarace in expiration test
-
Felix Lange authored
jsre: fix #1876, sleep too short on a slow test server
-
Felix Lange authored
tests: fix data race in bad-block-report disabling during tests
-
Péter Szilágyi authored
-
Péter Szilágyi authored
-
Péter Szilágyi authored
-
Péter Szilágyi authored
-
- Nov 04, 2015
-
-
Jeffrey Wilcke authored
eth/downloader: fix dysfunctional ignore list hidden by generic set
-
Péter Szilágyi authored
-
Jeffrey Wilcke authored
eth, p2p, rpc/api: polish protocol info gathering
-
- Nov 03, 2015
-
-
Jeffrey Wilcke authored
accounts/abi: ABI fixes & added types
-
Jeffrey Wilcke authored
Infinite loop in filters
-
Jeffrey Wilcke authored
-
Felix Lange authored
crypto/secp256k1: add C compiler flags for pkgsrc
-
Felix Lange authored
pkgsrc is a cross-platform package manager that also supports OS X.
-
- Oct 31, 2015
-
-
Jeffrey Wilcke authored
miner: synchronise start / stop
-
Jeffrey Wilcke authored
This PR fixes an issue where the remote worker was stopped twice and not properly handled. This adds a synchronised running check to the start and stop methods preventing closing of a channel more than once.
-
- Oct 30, 2015
-
-
Jeffrey Wilcke authored
eth: added new testnet peers
-
Jeffrey Wilcke authored
cmd/geth, cmd/utils, eth: group CLI flags by purpose
-
Péter Szilágyi authored
-