Zsolt Felfoldi
f12f8a6c14
les, light: add block availability check for ODR requests
8 years ago
Zsolt Felfoldi
c57c54ce96
eth, les: defer starting LES service until ETH initial sync is finished
8 years ago
Zsolt Felfoldi
c8130df1d9
les: using random request IDs
8 years ago
Zsolt Felfoldi
af8a742d00
les: improved header fetcher and server statistics
8 years ago
Zsolt Felfoldi
e67500aa15
les: fixed light fetcher request ID matching
8 years ago
Zsolt Felfoldi
a6d3bf6fc3
p2p/discv5: search and lookup improvement
8 years ago
Zsolt Felfoldi
3e617f3cd6
les: implement light server pool
8 years ago
Péter Szilágyi
0fe35b907a
mobile: iOS naming and API fixes for generators and Swift ( #3408 )
...
* 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
8 years ago
Jeffrey Wilcke
3fc7c97827
core, core/vm: implemented a generic environment ( #3348 )
...
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.
8 years ago
Felix Lange
7f79d249a6
Merge pull request #3402 from fjl/ethclient-api-fixes
...
eth/filters, ethclient, ethereum: API improvements
8 years ago
Felix Lange
f138374027
ethereum: document use of Removed field for SubscribeFilterLogs
8 years ago
Felix Lange
f52a1ae849
core, core/vm, eth/filters: move Removed field into vm.Log
...
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.
8 years ago
Felix Lange
3bc0fe1ee3
ethclient, ethereum: add NotFound, split transactions out of ChainReader
...
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.
8 years ago
Felix Lange
fa0cc27400
ethclient: use package hexutil for number encoding
8 years ago
Felix Lange
4cb29bde2e
ethclient: don't crash if server returns null uncle header
...
It should never return null for a known uncle, but even if it does
we can't just crash.
8 years ago
gluk256
2dcf75a722
whisper/shhapi, whisper/whisperv5: refactoring ( #3364 )
...
* 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
8 years ago
Nick Johnson
671fd94e25
swarm/api: Update ENS root address for Ropsten & prod ( #3391 )
8 years ago
Péter Szilágyi
717d2f6f9e
Merge pull request #3390 from bas-vk/statsd-stop
...
ethstats: check if received event is valid
8 years ago
Maran
8cb95cb916
README: removed develop mentions
8 years ago
Bas van Kervel
56b446190a
ethstats: check if received event is valid
8 years ago
Péter Szilágyi
86f9e836be
cmd/geth: tidied up the source ( #3385 )
...
cmd/geth: tidied up the source
8 years ago
Péter Szilágyi
a90a170361
Merge pull request #3373 from karalabe/ethstats-block-fields
...
ethstats: don't drop concurrent head reports (mini forks)
8 years ago
Péter Szilágyi
889a5e0cf1
Merge pull request #3368 from bas-vk/sha3
...
node: improve error handling for web3_sha3 RPC method
8 years ago
Martin Holst Swende
9f8bc00cf5
eth, miner: removed unnecessary state.Copy()
...
* miner: removed unnecessary state.Copy()
* eth: made use of new miner method without state copying
* miner: More documentation about new method
8 years ago
Luca Zeug
3363a1c227
cmd/utils: update helpscreen's testnet description ( #3377 )
8 years ago
Péter Szilágyi
fc9939c4e1
Merge pull request #3376 from karalabe/drop-dao-flags
...
cmd: drop DAO related choice flags since ETC diverged
8 years ago
Péter Szilágyi
7267f796e6
cmd: drop DAO related choice flags since ETC diverged
8 years ago
Péter Szilágyi
7dfeceb8cc
ethstats: don't drop concurrent head reports (mini forks)
8 years ago
Péter Szilágyi
3807e520ec
Merge pull request #3370 from karalabe/ethstats-block-fields
...
ethstats: report block miner, gas limit and gas consumption
8 years ago
Péter Szilágyi
7625b1a4f4
ethstats: report block miner, gas limit and gas consumption
8 years ago
Bas van Kervel
1fc5cc1b59
node: improve error handling for web3_sha3 RPC method
8 years ago
Steven Roose
61ccb43487
core/types: Document Transaction.To ( #3366 )
8 years ago
Jeffrey Wilcke
bf24b120d7
VERSION, params: bump unstable version 1.5.5 ( #3361 )
8 years ago
Jeffrey Wilcke
b70acf3c5b
params: stable version 1.5.4 ( #3360 )
8 years ago
bas-vk
b5be6b72cb
eth/filter: add support for pending logs ( #3219 )
8 years ago
Felix Lange
318ad3c1e4
common/hexutil: fix Test{Decode,Unmarshal}Uint64 on 32bit arch ( #3363 )
8 years ago
Viktor Trón
e949a2ed2f
cmd/bzzd: swarm daemon fixes ( #3359 )
...
* 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
8 years ago
Péter Szilágyi
8d0108fc5d
Merge pull request #3355 from fjl/hexutil-2
...
Improve hex encoding/decoding
8 years ago
Péter Szilágyi
ba41efa8a0
Merge pull request #3362 from karalabe/cocoapods-fix-3000
...
build: use single CocoaPods package, pre-release dev builds
8 years ago
Péter Szilágyi
f81660b6db
build: use single CocoaPods package, pre-release dev builds
8 years ago
Felix Lange
91bceb4ace
ethclient: "addresses" -> "address" in filter query encoding
8 years ago
Felix Lange
be746628c7
eth/filters: simplify query object decoding
8 years ago
Felix Lange
ec5f531f4b
accounts: don't use common.Address for address field
...
common.Address JSON encoding now enforces the 0x prefix, but key files
don't have the prefix.
8 years ago
Felix Lange
37e5816bcd
common: use package hexutil for fixed size type encoding
8 years ago
Felföldi Zsolt
665bb43a4c
light: implemented VMState.Empty() ( #3357 )
8 years ago
Viktor Trón
e4bf004560
build/ci: add swarm related executables (bzzd, bzzup, bzzhash) to binary packages ( #3354 )
8 years ago
Felix Lange
1609df3275
ethclient: use package hexutil for JSON handling
8 years ago
Felix Lange
24f288770e
core/types: use package hexutil for JSON handling
8 years ago
Felix Lange
65e6319b12
core/vm: use package hexutil for JSON handling
8 years ago
Felix Lange
ec75953f50
common/hexutil: new package for 0x hex encoding
...
The new package is purpose-built to handle the encoding consumed and
produced by the RPC API.
8 years ago