- 06 Jun, 2016 1 commit
-
-
Thomas Bocek authored
When converting a negative number e.g., -2, the resulting ABI encoding should look as follows: fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffe. However, since the check of the type is for an uint instead of an int, it results in the following ABI encoding: 0101010101010101010101010101010101010101010101010101010101010102. The Ethereum ABI (https://github.com/ethereum/wiki/wiki/Ethereum-Contract-ABI) says, that signed integers are stored in two's complement which should be of the form ffffff.... and not 01010101..... for e.g. -1. Thus, I removed the type check in numbers.go as well as the function S256 as I don't think they are correct. Or maybe I'm missing something?
-
- 31 May, 2016 4 commits
-
-
Péter Szilágyi authored
eth/downloader: ensure cancel channel is closed post sync
-
Péter Szilágyi authored
eth/downloader, trie: pull head state concurrently with chain
-
Péter Szilágyi authored
cmd, console: split off the console into a reusable package
-
Péter Szilágyi authored
-
- 30 May, 2016 4 commits
-
-
Jeffrey Wilcke authored
core, core/state, trie: enterprise hand-tuned multi-level caching
-
Péter Szilágyi authored
-
Péter Szilágyi authored
-
Péter Szilágyi authored
-
- 27 May, 2016 3 commits
-
-
Péter Szilágyi authored
-
Péter Szilágyi authored
core/state: return the starting nonce for non-existent accs (testnet)
-
Péter Szilágyi authored
-
- 26 May, 2016 1 commit
-
-
Péter Szilágyi authored
-
- 25 May, 2016 6 commits
-
-
Jeffrey Wilcke authored
eth: enable bad block reports
-
Jeffrey Wilcke authored
misc: fix spelling mistake
-
Jeffrey Wilcke authored
eth/api: fixed GetCompilers when there is no error creating Solc
-
Jeffrey Wilcke authored
common/compiler: support relative path to solc
-
Obulapathi N Challa authored
-
Felix Lange authored
We used to have reporting of bad blocks, but it was disabled before the Frontier release. We need it back because users are usually unable to provide the full RLP data of a bad block when it occurs. A shortcoming of this particular implementation is that the origin peer is not tracked for blocks received during eth/63 sync. No origin peer info is still better than no report at all though.
-
- 24 May, 2016 2 commits
- 23 May, 2016 5 commits
-
-
Felix Lange authored
README: make it clear how to build all executables
-
Gianfranco Cecconi authored
-
Jeffrey Wilcke authored
eth: add new RPC method (personal.) SignAndSendTransaction
-
Jeffrey Wilcke authored
core: Simplify bloom9 tests
-
Jeffrey Wilcke authored
eth/filter: bugfix which can cause a nil pointer crash when parsing f…
-
- 22 May, 2016 1 commit
-
-
Fabio Berger authored
-
- 20 May, 2016 5 commits
-
-
Bas van Kervel authored
-
Jeffrey Wilcke authored
accounts/abi/bind, eth: rely on getCode for sanity checks, not estimate and call
-
Jeffrey Wilcke authored
eth/downloader: concurrent header downloads
-
Péter Szilágyi authored
-
Péter Szilágyi authored
-
- 19 May, 2016 1 commit
-
-
Jeffrey Wilcke authored
eth: fixed regression in eth_signTransaction fixes #2578
-
- 18 May, 2016 3 commits
-
-
Jeffrey Wilcke authored
Sign transaction returned the unsigned transaction rather than the signed one.
-
Felix Lange authored
node, p2p: move network config out of Server
-
Felix Lange authored
This silences a go vet message about copying p2p.Server in package node.
-
- 17 May, 2016 4 commits
-
-
Bas van Kervel authored
-
Jeffrey Wilcke authored
eth: skip transaction handling during fast sync
-
Péter Szilágyi authored
-
Jeffrey Wilcke authored
cmd/geth: fix console history exclusion
-