Martin Holst Swende
4f85c2b88b
trie: fix error in node decoding ( #19111 )
6 years ago
Elad
5b8ae7885e
swarm/storage: fix influxdb gc metrics report ( #19102 )
6 years ago
Péter Szilágyi
7f6b05aa43
Merge pull request #19087 from karalabe/ios-fix-take-2
...
vendor: pull in upstream syscall fixes for non-linux/arm64
6 years ago
Matthew Halpern
fa87929a2f
cmd: prefer nil slices over zero-length slices ( #19077 )
6 years ago
Matthew Halpern
e26a119c9b
console: prefer nil slices over zero-length slices ( #19076 )
6 years ago
Péter Szilágyi
9d3ea8df1c
vendor: pull in upstream syscall fixes for non-linux/arm64
6 years ago
Matthew Halpern
2b75fa9d61
core: enforce camel case variable names ( #19058 )
6 years ago
holisticode
2af24724dd
swarm/network: Saturation check for healthy networks ( #19071 )
...
* swarm/network: new saturation for implementation
* swarm/network: re-added saturation func in Kademlia as it is used elsewhere
* swarm/network: saturation with higher MinBinSize
* swarm/network: PeersPerBin with depth check
* swarm/network: edited tests to pass new saturated check
* swarm/network: minor fix saturated check
* swarm/network/simulations/discovery: fixed renamed RPC call
* swarm/network: renamed to isSaturated and returns bool
* swarm/network: early depth check
6 years ago
Péter Szilágyi
fab8c5a1cd
Merge pull request #19072 from karalabe/update-syscalls
...
vendor: update syscalls dependency
6 years ago
Péter Szilágyi
dcc045f03c
vendor: update syscalls dependency
6 years ago
Felix Lange
ba90a4aaa4
common/fdlimit: fix windows build ( #19068 )
6 years ago
Matthew Halpern
325334f61a
light: enforce camel case variable names ( #19054 )
6 years ago
Felix Lange
a8ddf7ad83
build: avoid dput and upload with sftp directly ( #19067 )
6 years ago
Matthew Halpern
7d24a73192
eth/tracers: enforce camel case variable names ( #19057 )
6 years ago
Matthew Halpern
e6c06a1da8
console, internal: enforce camel case variable names ( #19059 )
6 years ago
Elad
3ee09ba035
swarm/storage/netstore: add fetcher cancellation on shutdown ( #19049 )
...
swarm/network/stream: remove netstore internal wg
swarm/network/stream: run individual tests with t.Run
6 years ago
Martin Holst Swende
e9f70c9064
clef: documentation generator + docs ( #19020 )
...
* clef: implement documentation generation + remove unused struct
* clef: formatting + spelling
* clef: updates to doc
6 years ago
Janoš Guljaš
3fd6db2bf6
swarm: fix network/stream data races ( #19051 )
...
* swarm/network/stream: newStreamerTester cleanup only if err is nil
* swarm/network/stream: raise newStreamerTester waitForPeers timeout
* swarm/network/stream: fix data races in GetPeerSubscriptions
* swarm/storage: prevent data race on LDBStore.batchesC
https://github.com/ethersphere/go-ethereum/issues/1198#issuecomment-461775049
* swarm/network/stream: fix TestGetSubscriptionsRPC data race
https://github.com/ethersphere/go-ethereum/issues/1198#issuecomment-461768477
* swarm/network/stream: correctly use Simulation.Run callback
https://github.com/ethersphere/go-ethereum/issues/1198#issuecomment-461783804
* swarm/network: protect addrCountC in Kademlia.AddrCountC function
https://github.com/ethersphere/go-ethereum/issues/1198#issuecomment-462273444
* p2p/simulations: fix a deadlock calling getRandomNode with lock
https://github.com/ethersphere/go-ethereum/issues/1198#issuecomment-462317407
* swarm/network/stream: terminate disconnect goruotines in tests
* swarm/network/stream: reduce memory consumption when testing data races
* swarm/network/stream: add watchDisconnections helper function
* swarm/network/stream: add concurrent counter for tests
* swarm/network/stream: rename race/norace test files and use const
* swarm/network/stream: remove watchSim and its panic
* swarm/network/stream: pass context in watchDisconnections
* swarm/network/stream: add concurrent safe bool for watchDisconnections
* swarm/storage: fix LDBStore.batchesC data race by not closing it
6 years ago
Elad
d596bea2d5
swarm: fix uptime gauge update goroutine leak by introducing cleanup functions ( #19040 )
6 years ago
Dan Kinsley
555b3652dc
accounts/abi/bind/backends: add TransactionByHash to SimulatedBackend ( #19026 )
6 years ago
holisticode
3d22a46c94
swarm/storage: fix HashExplore concurrency bug ethersphere#1211 ( #19028 )
...
* swarm/storage: fix HashExplore concurrency bug ethersphere#1211
* swarm/storage: lock as value not pointer
* swarm/storage: wait for to complete
* swarm/storage: fix linter problems
* swarm/storage: append to nil slice
6 years ago
gluk256
b30109df3c
swarm/pss: mutex lifecycle fixed ( #19045 )
6 years ago
Martin Holst Swende
8771fbf3c8
rpc: make stdio usable over custom channels ( #19046 )
6 years ago
Martin Holst Swende
b5d471a739
clef: bidirectional communication with UI ( #19018 )
...
* clef: initial implementation of bidirectional RPC communication for the UI
* signer: fix tests to pass + formatting
* clef: fix unused import + formatting
* signer: gosimple nitpicks
6 years ago
Martin Holst Swende
75d292bcf6
clef: external signing fixes + signing data ( #19003 )
...
* signer/clef: make use of json-rpc notification
* signer: tidy up output of OnApprovedTx
* accounts/external, signer: implement remote signing of text, make accounts_sign take hexdata
* clef: added basic testscript
* signer, external, api: add clique signing test to debug rpc, fix clique signing in clef
* signer: fix clique interoperability between geth and clef
* clef: rename networkid switch to chainid
* clef: enable chainid flag
* clef, signer: minor changes from review
* clef: more tests for signer
6 years ago
Felix Lange
edf976ee8e
.travis.yml: fix upload destination ( #19043 )
6 years ago
Martin Holst Swende
f48da43bae
common/fdlimit: cap on MacOS file limits, fixes #18994 ( #19035 )
...
* common/fdlimit: cap on MacOS file limits, fixes #18994
* common/fdlimit: fix Maximum-check to respect OPEN_MAX
* common/fdlimit: return error if OPEN_MAX is exceeded in Raise()
* common/fdlimit: goimports
* common/fdlimit: check value after setting fdlimit
* common/fdlimit: make comment a bit more descriptive
* cmd/utils: make fdlimit happy path a bit cleaner
6 years ago
Felix Lange
3de19c8b31
build: use SFTP for launchpad uploads ( #19037 )
...
* build: use sftp for launchpad uploads
* .travis.yml: configure sftp export
* build: update CI docs
6 years ago
Rafael Matias
6cb7d52a29
swarm/docker: add global-store and split docker images ( #19038 )
6 years ago
Ferenc Szabo
27e3f96819
swarm: CI race detector test adjustments ( #19017 )
6 years ago
gluk256
cde02e017e
swarm/pss: transition to whisper v6 ( #19023 )
6 years ago
lash
0c10d37606
swarm/network, swarm/storage: Preserve opentracing contexts ( #19022 )
6 years ago
Péter Szilágyi
0436412412
Merge pull request #18988 from holiman/repro18977
...
core: repro #18977
6 years ago
Péter Szilágyi
940e317094
core: fix pruner panic when importing low-diff-large-sidechain
6 years ago
Martin Holst Swende
da1efdae0c
core: repro #18977
6 years ago
Janoš Guljaš
4f3d22f06c
swarm/storage/localstore: new localstore package ( #19015 )
6 years ago
holisticode
41597c2856
swarm: Debug API and HasChunks() API endpoint ( #18980 )
6 years ago
Janoš Guljaš
33d0a0efa6
cmd/swarm/global-store: global store cmd ( #19014 )
6 years ago
Péter Szilágyi
685eec3128
Merge pull request #19012 from holiman/default155
...
ethapi: default to use eip-155 protected transactions
6 years ago
Péter Szilágyi
9fa4c3ce94
Merge pull request #18991 from karalabe/archive-write-cache
...
cmd/utils, eth: relinquish GC cache to read cache in archive mode
6 years ago
Anton Evangelatov
d212535ddd
cmd/swarm/swarm-smoke: refactor generateEndpoints ( #19006 )
6 years ago
holisticode
7f55b0cbd8
cmd/swarm: hashes command ( #19008 )
6 years ago
Péter Szilágyi
d6225ab846
cmd/utils, eth: relinquish GC cache to read cache in archive mode
6 years ago
Péter Szilágyi
85b3b1c8d6
Merge pull request #16619 from kielbarry/contractsgolint
...
contracts/*: golint updates for this or self warning
6 years ago
Péter Szilágyi
159e991196
contracts/chequebook: polishes and naked return removals
6 years ago
Kiel barry
53b823afc8
contracts/*: golint updates for this or self warning
6 years ago
Martin Holst Swende
2ac61a9914
ethapi: default to use eip-155 protected transactions
6 years ago
Matthew Halpern
6f714ed73e
light: make chain receiver names consistent ( #18997 )
6 years ago
Matthew Halpern
7c339ff442
light: make transaction pool receiver names consistent ( #19000 )
6 years ago
Derek Gottfrid
4097ba6a00
mobile: add ability to create transactions for deploying contracts ( #16104 )
6 years ago