- Dec 12, 2016
-
-
Péter Szilágyi authored
-
- Dec 11, 2016
-
-
Péter Szilágyi authored
-
- Dec 10, 2016
-
-
bas-vk authored
NSIS has a default MAX_STR_LEN of 1024. If $ENV{PATH} is longer the returned string is truncated to an empty string. Its then not possible to distinguis between the variable not set or too long. As a result the variable is set with the location where geth and/or dev tools are installed. This may override any previous set values.
-
bas-vk authored
The transaction pool keeps track of the current nonce in its local pendingState. When a new block comes in the pendingState is reset. During the reset it fetches multiple times the current state through the use of the currentState callback. When a second block comes in during the reset its possible that the state changes during the reset. If that block holds transactions that are currently in the pool the local pendingState that is used to determine nonces can get out of sync.
-
- Dec 08, 2016
-
-
Péter Szilágyi authored
* build: modify the iOS namespace to iGeth (gomobile limitation) * mobile: assign names to return types for ObjC wrapper * mobile: use more expanded names for iOS/Swift API
-
- Dec 06, 2016
-
-
Jeffrey Wilcke authored
Environment is now a struct (not an interface). This reduces a lot of tech-debt throughout the codebase where a virtual machine environment had to be implemented in order to test or run it. The new environment is suitable to be used en the json tests, core consensus and light client.
-
- Dec 05, 2016
-
-
Felix Lange authored
eth/filters, ethclient, ethereum: API improvements
-
Felix Lange authored
-
Felix Lange authored
This field used to be assigned by the filter system and returned through the RPC API. Now that we have a Go client that uses the underlying type, the field needs to move. It is now assigned to true when the RemovedLogs event is generated so the filter system doesn't need to care about the field at all. While here, remove the log list from ChainSideEvent. There are no users of this field right now and any potential users could subscribe to RemovedLogsEvent instead.
-
Felix Lange authored
ethclient now returns ethereum.NotFound if the server returns null and no error while accessing blockchain data. The light client cannot provide arbitrary transactions. The change to split transaction access into its own interface emphasizes that transactions should not be relied on and recommends use of logs.
-
- Dec 04, 2016
-
-
Felix Lange authored
-
Felix Lange authored
It should never return null for a known uncle, but even if it does we can't just crash.
-
- Dec 01, 2016
-
-
gluk256 authored
* Filter refactoring * API tests added + bugfix * fixed the error logs * FilterID fixed * test cases fixed * key generation updated * POW updated * got rid of redundant stuff
-
Nick Johnson authored
-
Péter Szilágyi authored
ethstats: check if received event is valid
-
- Nov 30, 2016
-
-
Maran authored
-
Bas van Kervel authored
-
Péter Szilágyi authored
cmd/geth: tidied up the source
-
Péter Szilágyi authored
ethstats: don't drop concurrent head reports (mini forks)
-
Péter Szilágyi authored
node: improve error handling for web3_sha3 RPC method
-
Martin Holst Swende authored
* miner: removed unnecessary state.Copy() * eth: made use of new miner method without state copying * miner: More documentation about new method
-
- Nov 29, 2016
-
-
Luca Zeug authored
-
Péter Szilágyi authored
cmd: drop DAO related choice flags since ETC diverged
-
Péter Szilágyi authored
-
Péter Szilágyi authored
-
Péter Szilágyi authored
ethstats: report block miner, gas limit and gas consumption
-
Péter Szilágyi authored
-
Bas van Kervel authored
-
- Nov 28, 2016
-
-
Steven Roose authored
-
Jeffrey Wilcke authored
-
Jeffrey Wilcke authored
-
bas-vk authored
-
Felix Lange authored
-
Viktor Trón authored
* cmd/bzzd: add missing p2p/discovery flags * cmd/bzzd: fix two bugs crashing bzzd if bootnodes flag given * cmd/bzzd: make no swap default, renamed flag bzznoswap->bzzswap * internal/web3ext: correct methods for bzz IPC module * cmd/bzzd: ethapi param not mandatory. Warning if no blockchain * cmd/bzzd: correct default IPC modules in help string * cmd/utils: fix help description for networkId - add Ropsten * cmd/bzz, swarm/api, swarm/network: add swarm networkId flag * cmd/bzzd: change nosync flag to sync and BootTFlag
-
Péter Szilágyi authored
Improve hex encoding/decoding
-
Péter Szilágyi authored
build: use single CocoaPods package, pre-release dev builds
-
Péter Szilágyi authored
-
Felix Lange authored
-
Felix Lange authored
-
Felix Lange authored
common.Address JSON encoding now enforces the 0x prefix, but key files don't have the prefix.
-