- Jul 22, 2019
-
-
Felix Lange authored
* rpc: implement websockets with github.com/gorilla/websocket This change makes package rpc use the github.com/gorilla/websocket package for WebSockets instead of golang.org/x/net/websocket. The new library is more robust and supports all WebSocket features including continuation frames. There are new tests for two issues with the previously-used library: - TestWebsocketClientPing checks handling of Ping frames. - TestWebsocketLargeCall checks whether the request size limit is applied correctly. * rpc: raise HTTP/WebSocket request size limit to 5MB * rpc: remove default origin for client connections The client used to put the local hostname into the Origin header because the server wanted an origin to accept the connection, but that's silly: Origin is for browsers/websites. The nobody would whitelist a particular hostname. Now that the server doesn't need Origin anymore, don't bother setting one for clients. Users who need an origin can use DialWebsocket to create a client with arbitrary origin if needed. * vendor: put golang.org/x/net/websocket back * rpc: don't set Origin header for empty (default) origin * rpc: add HTTP status code to handshake error This makes it easier to debug failing connections. * ethstats: use github.com/gorilla/websocket * rpc: fix lint
-
Péter Szilágyi authored
all: update author list and licenses
-
Péter Szilágyi authored
params: bump hard-coded CHTs to 22nd July values
-
Péter Szilágyi authored
-
Péter Szilágyi authored
-
Péter Szilágyi authored
-
Péter Szilágyi authored
-
Christian Muehlhaeuser authored
* Added missing error checks Add error handling where we assign err a value, but don't check for it being nil. * core/rawdb: tiny style nit
-
Kitten King authored
-
Christian Muehlhaeuser authored
No need to convert these types.
-
- Jul 19, 2019
-
-
Kurkó Mihály authored
-
- Jul 18, 2019
-
-
Péter Szilágyi authored
internal/ethapi: fix debug.chaindbProperty
-
Péter Szilágyi authored
-
Péter Szilágyi authored
core: check error before accessing potentially nil block
-
Péter Szilágyi authored
-
Felix Lange authored
-
Guillaume Ballet authored
* signer/core: fix reference issue in key derivation * Review feedback
-
- Jul 17, 2019
-
-
大彬 authored
-
gary rong authored
* core: fix write coucurrency in txpool * core: add rlock for pendingState read access * core: address comments
-
David Chase authored
Gollvm has very aggressive dead code elimination that completely removes one of these two benchmarks. To prevent this, use the result of the benchmark (a boolean), and to be "fair", make the transformation to both benchmarks. To be reliably assured of not removing the code, "use" means assigning to an exported global. Non-exported globals and //go:noinline functions are possibly subject to this optimization.
-
- Jul 13, 2019
-
-
jwasinger authored
This adds the debug_accountRange method which returns all accounts in the state for a given block and transaction index.
-
- Jul 12, 2019
-
-
cdetrio authored
-
- Jul 11, 2019
-
-
gary rong authored
* eth: fix error when dump config with nil checkpoint * cmd/utils: ignore default datadir if it's already set.
-
- Jul 10, 2019
-
-
Péter Szilágyi authored
-
Péter Szilágyi authored
-
Péter Szilágyi authored
cmd: encapsulate les relative cli options
-
Péter Szilágyi authored
-
rjl493456442 authored
-
Péter Szilágyi authored
cmd, eth, les: fix up ultra light config integration
-
- Jul 09, 2019
-
-
Péter Szilágyi authored
appveyor: bump builder to Go 1.12.7
-
Péter Szilágyi authored
-
Péter Szilágyi authored
-
Sheldon authored
-
Péter Szilágyi authored
core: kill off managed state, use own tiny noncer for txpool
-
Péter Szilágyi authored
-
- Jul 08, 2019
-
-
Péter Szilágyi authored
params: bump all CHTs, deploy all checkpoint oracles
-
Péter Szilágyi authored
-
gary rong authored
* cmd/puppeth: integrate blockscout * cmd/puppeth: expose debug namespace for blockscout * cmd/puppeth: fix dbdir * cmd/puppeth: run explorer in archive mode * cmd/puppeth: ensure node is synced * cmd/puppeth: fix explorer docker alignment + drop unneeded exec * cmd/puppeth: polish up config saving and reloading * cmd/puppeth: check both web and p2p port for explorer service
-
Felix Lange authored
Make it select from all live nodes instead of selecting the heads of random buckets.
-
Péter Szilágyi authored
* eth: chain config (genesis + fork) ENR entry * core/forkid, eth: protocol independent fork ID, update to CRC32 spec * core/forkid, eth: make forkid a struct, next uint64, enr struct, RLP * core/forkid: change forkhash rlp encoding from int to [4]byte * eth: fixup eth entry a bit and update it every block * eth: fix lint * eth: fix crash in ethclient tests
-