- May 13, 2019
-
-
Péter Szilágyi authored
p2p/discover: fix nil-dereference due to race
-
PilkyuJung authored
* move error variable to error.go * Update error.go Edit "Genesis" to "genesis"
-
Martin Holst Swende authored
-
Elad authored
-
Anton Evangelatov authored
-
- May 11, 2019
-
-
holisticode authored
-
- May 10, 2019
-
-
Péter Szilágyi authored
* core: fix import errors on clique crashes + empty blocks * cosensus/clique, core: add test for the mirrored state issue * core: address todo question wrt log count * core: raise a louder warning for non-clique known blocks
-
Péter Szilágyi authored
swarm v0.4-rc1
-
Elad authored
-
Anton Evangelatov authored
swarm/storage: remove traces for put/get/set (#1389) * swarm/storage: remove traces for put/get/set * swarm/storage: remove Has traces
-
Elad authored
swarm/storage/localstore: add gc metrics, disable flaky test
-
Anton Evangelatov authored
swarm/storage/localstore: fix broken metric (#1373) p2p/protocols: count different messages (#1374) cmd/swarm: disable snapshot create test due to constant flakes (#1376) swarm/network: remove redundant goroutine (#1377)
-
Louis Holbrook authored
-
Anton Evangelatov authored
swarm/network: add want delay timer to syncing (#1367) swarm/network: synchronise peer.close() (#1369)
-
Elad authored
swarm/api: integrate tags to count chunks being split and stored swarm/api/http: integrate tags in middleware for HTTP `POST` calls and assert chunks being calculated and counted correctly swarm: remove deprecated and unused code, add swarm hash to DoneSplit signature, remove calls to the api client from the http package
-
Janoš Guljaš authored
-
Elad authored
* swarm/chunk: add tags backend to chunk package
-
Anton Evangelatov authored
swarm/network: measure how many chunks a node delivers (#1358)
-
Elad authored
-
Janoš Guljaš authored
* swarm/shed: remove metrics fields from DB struct * swarm/schunk: add String methods to modes * swarm/storage/localstore: add metrics and traces * swarm/chunk: unknown modes without spaces in String methods * swarm/storage/localstore: remove bin number from pull subscription metrics * swarm/storage/localstore: add resetting time metrics and code improvements
-
Anton Evangelatov authored
cmd/swarm/swarm-smoke: improve smoke tests (#1337) swarm/network: remove dead code (#1339) swarm/network: remove FetchStore and SyncChunkStore in favor of NetStore (#1342)
-
Janoš Guljaš authored
-
- May 08, 2019
-
-
Péter Szilágyi authored
cmd/faucet: embed git commit hash/date, disable Google+
-
Péter Szilágyi authored
-
Péter Szilágyi authored
-
C. Brown authored
* add-date-to unstable * fields-insteadof-split * internal/build: support building with missing git * docker: add git history back to support commit date in version * internal/build: use PR commits hashes for PR builds
-
Gary Rong authored
* core: import known blocks if they can be inserted as canonical blocks * core: insert knowns blocks * core: remove useless * core: doesn't process head block in reorg function
-
Péter Szilágyi authored
eth/downloader: fix header delays during chain dedup
-
Samuel Marks authored
-
- May 07, 2019
-
-
Guillaume Ballet authored
-
Péter Szilágyi authored
-
Kurkó Mihály authored
* accounts: add note about backing up the keystore * cmd, accounts: move the printout to accountCreate * internal, signer: add info when new account is created via rpc * cmd, internal, signer: split logs * cmd/geth: make account new output a bit more verbose
-
Martin Holst Swende authored
* core: add tests for canonicality confusion * core: delete stale future canon number mappings during reorg to shorter+heavier chain
-
Gary Rong authored
* trie: fix merkle proof * trie: use hasher instead of allocate keccack256 every time * trie: add comments
-
- May 04, 2019
-
-
유용환 authored
-
- May 02, 2019
-
-
Péter Szilágyi authored
p2p/discover: split out discv4 code
-
Martin Holst Swende authored
This change makes getBalance, getCode, getStorageAt, getProof, call, getTransactionCount return an error if the block number in the request doesn't exist. getHeaderByNumber still returns null for missing headers.
-
- Apr 30, 2019
-
-
Martin Holst Swende authored
* consensus,core,miner: avoid overhead of creating a new block * consensus: nitpick dot * consensus: fix some comment formatting nits
-
Felix Lange authored
This change restructures the internals of p2p/discover to make room for the discv5 code which will soon be added to this package. - packet type names now have a "V4" suffix. - ListenUDP returns *UDPv4 instead of *Table. This technically breaks the API but the only caller in go-ethereum is package p2p, which uses a compatible interface and doesn't need changes. - The internal transport interface is changed to make Table reusable for v5. - The 'lookup' code moves from table to transport. This required updating the lookup unit test to use udpTest instead of a custom transport.
-
Felix Lange authored
-