- Jan 26, 2016
-
-
Bas van Kervel authored
-
- Jan 25, 2016
-
-
Felix Lange authored
logger/glog: improve vmodule
-
- Jan 22, 2016
-
-
Felix Lange authored
separate and optimize Dockerfile for master and develop
-
Vincent G authored
-
- Jan 21, 2016
-
-
Felix Lange authored
-
Felix Lange authored
-
Felix Lange authored
This change allows setting the verbosity for directory prefixes using the syntax: --vmodule=eth/=6
-
- Jan 20, 2016
-
-
Jeffrey Wilcke authored
core/vm: resolve circular dependency to debug vm storage
-
Jeffrey Wilcke authored
console: add admin.sleep and admin.sleepBlocks
-
- Jan 19, 2016
-
-
Felix Lange authored
Nodeinfo format Genesis and Header
-
Bas van Kervel authored
-
- Jan 18, 2016
-
-
Bas van Kervel authored
-
- Jan 14, 2016
-
-
Jeffrey Wilcke authored
core/state: always commit in batches, just finish if not needed later
-
- Jan 13, 2016
-
-
Péter Szilágyi authored
-
- Jan 11, 2016
-
-
Péter Szilágyi authored
-
Felix Lange authored
core: fix invalid state reuse in chain maker based tests
-
Péter Szilágyi authored
-
- Jan 08, 2016
-
-
Felix Lange authored
common: Fix HomeDir detection
-
Lefteris Karapetsas authored
I am working on porting geth to [Ubuntu Core](https://developer.ubuntu.com/en/snappy/https://developer.ubuntu.com/en/snappy/). I am testing geth on a Raspberry PI and for Ubuntu Core the $HOME directory is unique for each application. See [here](https://developer.ubuntu.com/en/snappy/guides/filesystem-layout) for more information of their filesystem layout. For some reason in Go `usr.HomeDir` returns a different value than `$HOME` in Ubuntu Core. Adding this at the end of `HomeDir()` ```go fmt.Printf("at HomeDir, user.HomeDir = %s and $HOME is %s\n", usr.HomeDir, os.Getenv("HOME")) ``` gives the following output ``` at HomeDir, user.HomeDir = /home/ubuntu and $HOME is /home/ubuntu/apps/geth.sideload/IJcODREBYbHO ``` With this commit, I propose giving precedence to the `$HOME` environment variable as is also suggested by the [homedir](https://github.com/mitchellh/go-homedir/blob/master/homedir.go) project.
-
- Jan 05, 2016
-
-
Jeffrey Wilcke authored
core, eth/downloader: ensure state presence in ancestor lookup
-
Jeffrey Wilcke authored
core: transaction invalidation and reorganization fixes
-
Péter Szilágyi authored
-
- Jan 04, 2016
-
-
Péter Szilágyi authored
-
- Dec 30, 2015
-
-
Felix Lange authored
eth/downloader: throttling tests are time-sensitive, don't run parallel
-
Péter Szilágyi authored
-
- Dec 18, 2015
-
-
Jeffrey Wilcke authored
common: remove old RLP implementation, Value and ExtPackage
-
Jeffrey Wilcke authored
console crash on nil ptr
-
Bas van Kervel authored
console: bugfix that causes the console to crash when connection to an endpoint without the personal api enabled
-
Jeffrey Wilcke authored
Light state
-
Felix Lange authored
In order to make this happen, kill all remaining trivial uses of common/{rlp,value}.go. The non-trivial ones have been updated earlier.
-
Felix Lange authored
-
Felix Lange authored
The test chain generated by makeChainFork included invalid uncle headers, crashing the generator during the state commit. The headers were invalid because they used the iteration counter as the block number, even though makeChainFork uses a block with number > 0 as the parent. Fix this by introducing BlockGen.Number, which allows accessing the actual number of the block being generated.
-
Jeffrey Wilcke authored
p2p: resolve incomplete dial targets
-
- Dec 17, 2015
-
-
Felix Lange authored
The test expected the timeout to fire after a matcher for the response was added, but the timeout is random and fired sooner sometimes.
-
Felix Lange authored
This change makes it possible to add peers without providing their IP address. The endpoint of the target node is resolved using the discovery protocol.
-
Felix Lange authored
This change simplifies the dial scheduling logic because it no longer needs to track whether the discovery table has been bootstrapped.
-
Felix Lange authored
-
Zsolt Felföldi authored
-
Jeffrey Wilcke authored
core: tx pool skip price validation for "owned" transactions
-
Jeffrey Wilcke authored
eth: fix #2076, where end of hash query was interpreted number query
-