- May 06, 2016
-
-
Jeffrey Wilcke authored
internal/debug: rename debug_trace to debug_goTrace
-
Felix Lange authored
Reduces confusion with EVM execution tracing methods.
-
- May 03, 2016
-
-
Jeffrey Wilcke authored
cmd/geth: fixed to use proper version string for output
-
Jeffrey Wilcke authored
-
Jeffrey Wilcke authored
p2p/discover: prevent bonding self
-
Jeffrey Wilcke authored
Make the README suck less :P
-
Péter Szilágyi authored
-
Jeffrey Wilcke authored
Geth release oracle
-
- May 02, 2016
-
-
Felix Lange authored
-
Felix Lange authored
-
Péter Szilágyi authored
-
Péter Szilágyi authored
-
Péter Szilágyi authored
-
Gustav Simonsson authored
-
- Apr 29, 2016
-
-
Felix Lange authored
eth: add personal_importRawKey
-
Péter Szilágyi authored
Provide a public accessor for ChainConfig
-
Nick Johnson authored
This is necessary for external users of the go-ethereum code who want to, for instance, build a custom node that plays back transactions, as core.ApplyTransaction requires a ChainConfig as a parameter.
-
Péter Szilágyi authored
cmd: add a `--fakepow` flag to help benchmarking database changes
-
- Apr 28, 2016
-
-
Ales Katona authored
-
Péter Szilágyi authored
accounts/abi: refactored ABI package
-
Jeffrey Wilcke authored
eth/filters: ignore logs that don't match filter criteria on chain reorg
-
Jeffrey Wilcke authored
core, eth: added json tag field for proper unmarshalling
-
Jeffrey Wilcke authored
-
Jeffrey Wilcke authored
-
Jeffrey Wilcke authored
-
Bas van Kervel authored
-
- Apr 27, 2016
-
-
Péter Szilágyi authored
accounts/abi/bind, eth: add contract non-existent error
-
Péter Szilágyi authored
-
- Apr 26, 2016
-
-
Péter Szilágyi authored
accounts: disable file system watch on linux/arm64
-
Péter Szilágyi authored
Improve Address test coverage
-
Paulo L F Casaretto authored
-
Felix Lange authored
cmd/geth, jsre: improve the js command
-
- Apr 25, 2016
-
-
Felix Lange authored
-
Jeffrey Wilcke authored
According to our own instructions the genesis config attribute should be "config". The genesis definition in the go code, however, has a field called `ChainConfig`. This field now has a `json:"config"` struct tag so that the json is properly unmarshalled. This fixes #2482
-
Felix Lange authored
cmd/bootnode: fix -genkey, add logging options
-
- Apr 22, 2016
-
-
Felix Lange authored
-
- Apr 21, 2016
-
-
Péter Szilágyi authored
-
- Apr 20, 2016
-
-
Felix Lange authored
geth js stopped the JS runtime after running the first input file and blocked for pending callbacks. This commit makes it process all files and enables quitting with Ctrl-C regardless of callbacks. Error reporting is also improved. If a script fails to load, the error is printed and includes the backtrace. package jsre now ensures that otto is aware of the filename, the backtrace will contain them. Before: $ geth js bad.js; echo "exit $?" ... log messages ... exit 0 After: $ geth js bad.js; echo "exit $?" ... log messages ... Fatal: JavaScript Error: Invalid number of input parameters at web3.js:3109:20 at web3.js:4917:15 at web3.js:4960:5 at web3.js:4984:23 at checkWork (bad.js:11:9) at bad.js:19:1 exit 1
-
Jeffrey Wilcke authored
Refactored the abi package parsing and type handling. Relying mostly on package reflect as opposed to most of our own type reflection. Our own type reflection is still used however for cases such as Bytes and FixedBytes (abi: bytes•). This also inclused several fixes for slice handling of arbitrary and fixed size for all supported types. This also further removes implicit type casting such as assigning, for example `[2]T{} = []T{1}` will fail, however `[2]T{} == []T{1, 2}` (notice assigning *slice* to fixed size *array*). Assigning arrays to slices will always succeed if they are of the same element type. Incidentally also fixes #2379
-
- Apr 19, 2016
-
-
Jeffrey Wilcke authored
-