| Commit message (Collapse) | Author | Age | Files | Lines |
| |
|
| |
|
| |
|
| |
|
| |
|
| |
|
|
|
|
|
|
|
|
|
|
| |
AddNotaryPeer adds node to static node set so that server will maintain
the connection with the notary node.
AddNotaryPeer also sets the notaryConn flag to allow the node to always
connect, even if the slot are full.
RemoveNotaryPeer removes node from static, then disconnect and unsets
the notaryConn flag.
|
| |
|
| |
|
| |
|
| |
|
| |
|
| |
|
| |
|
| |
|
| |
|
|\
| |
| | |
Revert flag removal
|
| | |
|
|/ |
|
|\
| |
| | |
Backport PR for the v1.8.24 maintenance release
|
| | |
|
| |
| |
| |
| |
| |
| |
| |
| | |
* eth, les, geth: implement cli-configurable global gas cap for RPC calls
* graphql, ethapi: place gas cap in DoCall
* ethapi: reformat log message
|
| |
| |
| |
| |
| |
| |
| |
| | |
This resolves a minor issue where neighbors responses containing less
than 16 nodes would bump the failure counter, removing the node. One
situation where this can happen is a private deployment where the total
number of extant nodes is less than 16.
Issue found by @jsying.
|
| | |
|
| | |
|
| | |
|
| | |
|
| |
| |
| |
| |
| |
| |
| |
| |
| |
| |
| |
| |
| |
| | |
* all: simplify timestamps to uint64
* tests: update definitions
* clef, faucet, mobile: leftover uint64 fixups
* ethash: fix tests
* graphql: update schema for timestamp
* ethash: remove unused variable
|
| | |
|
| | |
|
|/ |
|
|\
| |
| | |
Update1.8
|
| | |
|
| |
| |
| |
| |
| |
| |
| |
| | |
This PR is replacing the metrics.influxdb.host.tag cmd-line flag with metrics.influxdb.tags - a comma-separated key/value tags, that are passed to the InfluxDB reporter, so that we can index measurements with multiple tags, and not just one host tag.
This will be useful for Swarm, where we want to index measurements not just with the host tag, but also with bzzkey and git commit version (for long-running deployments).
(cherry picked from commit 21acf0bc8d4f179397bb7d06d6f36df3cbee4a8e)
|
| |
| |
| |
| | |
(cherry picked from commit f28da4f602fcd17624cf6d40d070253dd6663121)
|
| |
| |
| |
| |
| |
| |
| |
| | |
* swarm: Reinstate Pss Protocol add call through swarm service
* swarm: Even less self
(cherry picked from commit d88c6ce6b058ccd04b03d079d486b1d55fe5ef61)
|
| |
| |
| |
| | |
(cherry picked from commit 53b823afc8c24337290ba2e7889c2dde496e9272)
|
| |
| |
| |
| |
| |
| |
| |
| |
| |
| |
| |
| |
| |
| |
| |
| |
| |
| |
| |
| | |
* cmd/swarm/swarm-smoke: first version trigger has-chunks on timeout
* cmd/swarm/swarm-smoke: finalize trigger to chunk debug
* cmd/swarm/swarm-smoke: fixed httpEndpoint for trigger
* cmd/swarm/swarm-smoke: port
* cmd/swarm/swarm-smoke: ws not rpc
* cmd/swarm/swarm-smoke: added debug output
* cmd/swarm/swarm-smoke: addressed PR comments
* cmd/swarm/swarm-smoke: renamed track-timeout and track-chunks
(cherry picked from commit 62d7688d0a7ddbdb5d7167b264e0ea617578b60d)
|
| |
| |
| |
| |
| |
| |
| |
| |
| |
| |
| |
| |
| |
| |
| |
| |
| |
| |
| |
| |
| |
| |
| |
| |
| |
| |
| |
| |
| |
| |
| |
| |
| |
| |
| |
| |
| |
| |
| |
| |
| |
| |
| |
| |
| |
| |
| |
| |
| |
| |
| |
| |
| |
| |
| |
| |
| |
| |
| |
| |
| |
| |
| |
| |
| |
| |
| |
| |
| |
| |
| |
| |
| |
| |
| |
| |
| |
| |
| |
| |
| |
| |
| |
| |
| |
| |
| |
| |
| |
| |
| |
| | |
* swarm/network: DRY out repeated giga comment
I not necessarily agree with the way we wait for event propagation.
But I truly disagree with having duplicated giga comments.
* p2p/simulations: encapsulate Node.Up field so we avoid data races
The Node.Up field was accessed concurrently without "proper" locking.
There was a lock on Network and that was used sometimes to access
the field. Other times the locking was missed and we had
a data race.
For example: https://github.com/ethereum/go-ethereum/pull/18464
The case above was solved, but there were still intermittent/hard to
reproduce races. So let's solve the issue permanently.
resolves: ethersphere/go-ethereum#1146
* p2p/simulations: fix unmarshal of simulations.Node
Making Node.Up field private in 13292ee897e345045fbfab3bda23a77589a271c1
broke TestHTTPNetwork and TestHTTPSnapshot. Because the default
UnmarshalJSON does not handle unexported fields.
Important: The fix is partial and not proper to my taste. But I cut
scope as I think the fix may require a change to the current
serialization format. New ticket:
https://github.com/ethersphere/go-ethereum/issues/1177
* p2p/simulations: Add a sanity test case for Node.Config UnmarshalJSON
* p2p/simulations: revert back to defer Unlock() pattern for Network
It's a good patten to call `defer Unlock()` right after `Lock()` so
(new) error cases won't miss to unlock. Let's get back to that pattern.
The patten was abandoned in 85a79b3ad3c5863f8612d25c246bcfad339f36b7,
while fixing a data race. That data race does not exist anymore,
since the Node.Up field got hidden behind its own lock.
* p2p/simulations: consistent naming for test providers Node.UnmarshalJSON
* p2p/simulations: remove JSON annotation from private fields of Node
As unexported fields are not serialized.
* p2p/simulations: fix deadlock in Network.GetRandomDownNode()
Problem: GetRandomDownNode() locks -> getDownNodeIDs() ->
GetNodes() tries to lock -> deadlock
On Network type, unexported functions must assume that `net.lock`
is already acquired and should not call exported functions which
might try to lock again.
* p2p/simulations: ensure method conformity for Network
Connect* methods were moved to p2p/simulations.Network from
swarm/network/simulation. However these new methods did not follow
the pattern of Network methods, i.e., all exported method locks
the whole Network either for read or write.
* p2p/simulations: fix deadlock during network shutdown
`TestDiscoveryPersistenceSimulationSimAdapter` often got into deadlock.
The execution was stuck on two locks, i.e, `Kademlia.lock` and
`p2p/simulations.Network.lock`. Usually the test got stuck once in each
20 executions with high confidence.
`Kademlia` was stuck in `Kademlia.EachAddr()` and `Network` in
`Network.Stop()`.
Solution: in `Network.Stop()` `net.lock` must be released before
calling `node.Stop()` as stopping a node (somehow - I did not find
the exact code path) causes `Network.InitConn()` to be called from
`Kademlia.SuggestPeer()` and that blocks on `net.lock`.
Related ticket: https://github.com/ethersphere/go-ethereum/issues/1223
* swarm/state: simplify if statement in DBStore.Put()
* p2p/simulations: remove faulty godoc from private function
The comment started with the wrong method name.
The method is simple and self explanatory. Also, it's private.
=> Let's just remove the comment.
(cherry picked from commit 50b872bf05b8644f14b9bea340092ced6968dd59)
|
| |
| |
| |
| |
| |
| |
| |
| |
| |
| | |
* swarm/pss: split pss and keystore
* swarm/pss: moved whisper to keystore
* swarm/pss: goimports fixed
(cherry picked from commit 12ca3b172a7e1b2b63ef2369e8dc37c75144c81f)
|
| |
| |
| |
| |
| |
| |
| | |
swarm/network/stream: remove netstore internal wg
swarm/network/stream: run individual tests with t.Run
(cherry picked from commit 3ee09ba03511ad9a49e37c58f0c35b9c9771dd6f)
|
| |
| |
| |
| |
| |
| |
| |
| |
| |
| |
| |
| |
| |
| |
| |
| |
| |
| |
| |
| |
| |
| | |
* 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
(cherry picked from commit 2af24724dd5f3ab1994001854eb32c6a19f9f64a)
|
| |
| |
| |
| | |
(cherry picked from commit 5b8ae7885eaa033aaf1fb1d5959b7f1c86761d6d)
|
| |
| |
| |
| |
| |
| |
| |
| |
| |
| |
| |
| |
| |
| |
| |
| |
| |
| |
| |
| |
| |
| |
| |
| |
| |
| |
| |
| |
| |
| |
| |
| |
| |
| |
| |
| |
| |
| |
| |
| |
| |
| |
| |
| |
| |
| |
| |
| | |
* 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
(cherry picked from commit 3fd6db2bf63ce90232de445c7f33943406a5e634)
|
| |
| |
| |
| |
| |
| | |
functions (#19040)
(cherry picked from commit d596bea2d501d20b92e0fd4baa8bba682157dfa7)
|
| |
| |
| |
| |
| |
| |
| |
| |
| |
| |
| |
| |
| |
| | |
* 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
(cherry picked from commit 3d22a46c94f1d842dbada665b36a453362adda74)
|
| |
| |
| |
| | |
(cherry picked from commit b30109df3c7c56cb0d1752fc03f478474c3c190a)
|
| |
| |
| |
| | |
(cherry picked from commit 6cb7d52a29c68cdc4eafabb6dfe7594c288d151e)
|
| |
| |
| |
| | |
(cherry picked from commit 33d0a0efa61fed2b16797fd12161519943943282)
|
| |
| |
| |
| | |
(cherry picked from commit 27e3f968194e2723279b60f71c79d4da9fc7577f)
|
| |
| |
| |
| | |
(cherry picked from commit 597597e8b27ee60a25b4533771702892e72898a5)
|
| |
| |
| |
| | |
(cherry picked from commit 43e1b7b124d2bcfba98fbe54972a35c022d85bf2)
|
| |
| |
| |
| | |
(cherry picked from commit cde02e017ef2fb254f9b91888f4a14645c24890a)
|
| |
| |
| |
| | |
(cherry picked from commit 0c10d376066cb7e57d3bfc03f950c7750cd90640)
|
| |
| |
| |
| | |
(cherry picked from commit 19bfcbf9117f39f54f698a0953534d90c08e9930)
|
| |
| |
| |
| | |
(cherry picked from commit 7c60d0a6a2d3925c2862cbbb188988475619fd0d)
|
| |
| |
| |
| | |
(cherry picked from commit 1c3aa8d9b12d6104ccddecc1711bc6be2f5b269d)
|
| |
| |
| |
| | |
(cherry picked from commit 4f3d22f06c546f36487b33dfb6b5cb4df3ecf073)
|
| |
| |
| |
| | |
(cherry picked from commit 41597c2856d6ac7328baca1340c3e36ab0edd382)
|
| |
| |
| |
| | |
(cherry picked from commit d212535ddd5bf63a0c0b194525246480ae46c537)
|
| |
| |
| |
| | |
(cherry picked from commit c5c9cef5c0baf1652b6642858ad2426794823699)
|
| |
| |
| |
| | |
(cherry picked from commit b91bf08876ca4da0c2a843a9ed3e88d64427cfb8)
|
| |
| |
| |
| | |
(cherry picked from commit 7f55b0cbd8618a1b0de8d7e37d2b0143ebae4abf)
|
| |
| |
| |
| | |
(cherry picked from commit 3eff652a7b606f25d43bef6ccb998b8e306f8a75)
|
| |
| |
| |
| | |
(cherry picked from commit f9401ae011ddf7f8d2d95020b7446c17f8d98dc1)
|
| |
| |
| |
| | |
(cherry picked from commit 592bf6a59cac9697f0491b24e5093cb759d7e44c)
|
| |
| |
| |
| | |
(cherry picked from commit 2abeb35d5425d72c2f7fdfe4209f7a94fac52a8e)
|
| |
| |
| |
| | |
(cherry picked from commit ad13d2d407d2f614c39af92430fda0a926da2a8a)
|
| |
| |
| |
| | |
(cherry picked from commit fa34429a2695f57bc0a96cd78f25e86700d8ee44)
|
| |
| |
| |
| | |
(cherry picked from commit bbd120354a8d226b446591eeda9f9462cb9b690a)
|
| |
| |
| |
| | |
(cherry picked from commit a0b0db63055e1dd350215f9fe04b0abf19f3488a)
|
| |
| |
| |
| | |
(cherry picked from commit 85a79b3ad3c5863f8612d25c246bcfad339f36b7)
|
| |
| |
| |
| | |
(cherry picked from commit 560957799a089042e471320d179ef2e96caf4f8d)
|
| |
| |
| |
| | |
(cherry picked from commit 632135ce4c1d8d3d9a36771aab4137260018e84b)
|
| |
| |
| |
| | |
(cherry picked from commit 257bfff316e4efb8952fbeb67c91f86af579cb0a)
|
| |
| |
| |
| | |
(cherry picked from commit 81e26d5a4837077d5fff17e7b461061b134a4a00)
|
| |
| |
| |
| |
| |
| |
| |
| |
| |
| |
| |
| |
| |
| |
| |
| |
| |
| |
| |
| |
| |
| |
| |
| |
| |
| |
| |
| | |
* swarm/network: fix skipped tests related to suggestPeer
* swarm/network: rename depth to radius
* swarm/network: uncomment assertHealth and improve comments
* swarm/network: remove commented code
* swarm/network: kademlia suggestPeer algo correction
* swarm/network: kademlia suggest peer
* simplify suggest Peer code
* improve peer suggestion algo
* add comments
* kademlia testing improvements
* assertHealth -> checkHealth (test helper)
* testSuggestPeer -> checkSuggestPeer (test helper)
* remove testSuggestPeerBug and TestKademliaCase
* swarm/network: kademlia suggestPeer cleanup, improved comments
* swarm/network: minor comment, discovery test default arg
(cherry picked from commit bcb2594151c849d65108dd94e54b69067d117d7d)
|
| |
| |
| |
| |
| |
| |
| |
| |
| |
| |
| |
| |
| |
| |
| |
| |
| |
| |
| |
| |
| |
| |
| |
| |
| |
| |
| |
| | |
* cmd/swarm/swarm-snapshot: add binary to create network snapshots
* cmd/swarm/swarm-snapshot: refactor and extend tests
* p2p/simulations: remove unused triggerChecks func and fix linter
* internal/cmdtest: raise the timeout for killing TestCmd
* cmd/swarm/swarm-snapshot: add more comments and other minor adjustments
* cmd/swarm/swarm-snapshot: remove redundant check in createSnapshot
* cmd/swarm/swarm-snapshot: change comment wording
* p2p/simulations: revert Simulation.Run from master
https://github.com/ethersphere/go-ethereum/pull/1077/files#r247078904
* cmd/swarm/swarm-snapshot: address pr comments
* swarm/network/simulations/discovery: removed snapshot write to file
* cmd/swarm/swarm-snapshot, swarm/network/simulations: removed redundant connection event check, fixed lint error
(cherry picked from commit 34f11e752f61b81c13cdde0649a3c7b14f801c69)
|
| |
| |
| |
| | |
(cherry picked from commit 96c7c18b184ae894f1c6bd5fbfc45fbcfa9ace77)
|
| |
| |
| |
| |
| | |
fixes: ethersphere/go-ethereum#1117
(cherry picked from commit f728837ee6b48a2413437f54057b4552b7e77494)
|
| |
| |
| |
| | |
(cherry picked from commit c0b9c763bb1572c202a60b82e7dcdc48dc3c280a)
|
| |
| |
| |
| | |
(cherry picked from commit 75a931470ee006623f7f172d2a50e7723ca26187)
|
| |
| |
| |
| | |
(cherry picked from commit 37e5a908e7368d84beef14a3ee8c534f34aa636f)
|
| | |
|
| |
| |
| |
| | |
(cherry picked from commit 9d3ea8df1c70be24e5814e8338dfc9078b8ccafe)
|
| |
| |
| |
| | |
(cherry picked from commit dcc045f03c7c933dcdc7302f0338cbbfef7398ea)
|
| |
| |
| |
| | |
(cherry picked from commit ba90a4aaa42428fc5f38c4869455db5a51565714)
|
| |
| |
| |
| | |
(cherry picked from commit a8ddf7ad8393cff80848b193c698ce5e6440e061)
|
| |
| |
| |
| | |
(cherry picked from commit edf976ee8e7e1561cf11cbdc5a0c5edb497dda34)
|
| |
| |
| |
| |
| |
| |
| |
| |
| |
| |
| |
| |
| |
| |
| |
| |
| |
| | |
* 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
(cherry picked from commit f48da43bae183a04a23d298cb1790d2f8d2cec51)
|
| |
| |
| |
| |
| |
| |
| |
| |
| |
| | |
* build: use sftp for launchpad uploads
* .travis.yml: configure sftp export
* build: update CI docs
(cherry picked from commit 3de19c8b31ab975eed1f7f276d31761f7f8b9af9)
|
| |
| |
| |
| | |
(cherry picked from commit b0ed083ead2d58cc25754eacdb48046eb2bc81cb)
|
| | |
|
| | |
|
| | |
|
| | |
|
|/ |
|
| |
|
|
|
|
|
|
|
|
|
|
|
|
|
| |
This change clears up confusion around the two ways in which nodes
can be added to the table.
When a neighbors packet is received as a reply to findnode, the nodes
contained in the reply are added as 'seen' entries if sufficient space
is available.
When a ping is received and the endpoint verification has taken place,
the remote node is added as a 'verified' entry or moved to the front of
the bucket if present. This also updates the node's IP address and port
if they have changed.
|
| |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| |
This change resolves multiple issues around handling of endpoint proofs.
The proof is now done separately for each IP and completing the proof
requires a matching ping hash.
Also remove waitping because it's equivalent to sleep. waitping was
slightly more efficient, but that may cause issues with findnode if
packets are reordered and the remote end sees findnode before pong.
Logging of received packets was hitherto done after handling the packet,
which meant that sent replies were logged before the packet that
generated them. This change splits up packet handling into 'preverify'
and 'handle'. The error from 'preverify' is logged, but 'handle' happens
after the message is logged. This fixes the order. Packet logs now
contain the node ID.
|
|
|
|
|
|
|
|
|
| |
dput --passive should make repo pushes from Travis work again.
dput --no-upload-log works around an issue I had while uploading locally.
debuild -d says that debuild shouldn't check for build dependencies when
creating the source package. This option is needed to make builds work
in environments where the installed Go version doesn't match the
declared dependency in the source package.
|
| |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| |
This PR adds a new fork which disables EIP-1283. Internally it's called Petersburg,
but the genesis/config field is ConstantinopleFix.
The block numbers are:
7280000 for Constantinople on Mainnet
7280000 for ConstantinopleFix on Mainnet
4939394 for ConstantinopleFix on Ropsten
9999999 for ConstantinopleFix on Rinkeby (real number decided later)
This PR also defaults to using the same ConstantinopleFix number as whatever
Constantinople is set to. That is, it will default to mainnet behaviour if ConstantinopleFix
is not set.This means that for private networks which have already transitioned
to Constantinople, this PR will break the network unless ConstantinopleFix is
explicitly set!
|
| |
|
|\
| |
| | |
params: postpone Constantinople due to net SSTORE reentrancy
|
|/ |
|
| |
|
| |
|
|
|
|
|
|
| |
* swarm/pot: refactored pot.remove(), updated comments
* swarm/pot: comments updated
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| |
* swarm/network: eachBin now starts at kaddepth for nn
* swarm/network: fix Kademlia.EachBin
* swarm/network: fix kademlia.EachBin
* swarm/network: correct EachBin implementation according to requirements
* swarm/network: less addresses simplified tests
* swarm: calc kad depth outside loop in EachBin test
* swarm/network: removed printResults
* swarm/network: cleanup imports
* swarm/network: remove kademlia.EachBin; fix RequestSubscriptions and add unit test
* swarm/network/stream: address PR comments
* swarm/network/stream: package-wide subscriptionFunc
* swarm/network/stream: refactor to kad.EachConn
|
|
|
|
|
|
| |
* core, eth: fix database version
* eth: polish error message
|
| |
|
|
|
| |
Co-authored-by: weimumu <934657014@qq.com>
|
|
|
|
|
|
| |
* swarm/network: Rename minproxbinsize, add as member of simulation
* swarm/network: Deactivate WaitTillHealthy, unreliable pending suggestpeer
|
| |
|
|
|
|
|
|
| |
* swarm/network, swarm/pss: remove isproxbin bool from kad.Each* iterfunc
* swarm/network: restore comment and unskip snapshot sync tests
|
|
|
|
|
|
|
|
|
|
|
|
| |
* swarm/storage: fix T.Fatal inside a goroutine
* swarm/network/simulation: fix T.Fatal inside a goroutine
* swarm/network/stream: fix T.Fatal inside a goroutine
* swarm/network/simulation: consistent failures in TestPeerEventsTimeout
* swarm/network/simulation: rename sendRunSignal to triggerSimulationRun
|
| |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| |
* swarm: completed 1st phase of swap accounting
* swarm, p2p/protocols: added stream pricing
* swarm/network/stream: gofmt simplify stream.go
* swarm: fixed review comments
* swarm: used snapshots for swap tests
* swarm: custom retrieve for swap (less cascaded requests at any one time)
* swarm: addressed PR comments
* swarm: log output formatting
* swarm: removed parallelism in swap tests
* swarm: swap tests simplification
* swarm: removed swap_test.go
* swarm/network/stream: added prefix space for comments
* swarm/network/stream: unit test for prices
* swarm/network/stream: don't hardcode price
* swarm/network/stream: fixed invalid price check
|
| |
|
| |
|
|
|
|
|
|
| |
* Changed dumpConfig function to optionally save to file
* Added O_TRUNC flag to file open and cleaned up code
|
| |
|
| |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| |
* swarm/network: fix code inspection problems
- typos
- redundant import alias
* p2p/simulations: fix code inspection problems
- typos
- unused function parameters
- redundant import alias
- code style issue: snake case
* swarm/network: fix unused method parameters inspections
|
| |
|
|
|
|
|
|
|
|
|
|
| |
* eth/tracer: extend create2
* eth/tracers: fix create2-flaw in prestate_tracer
* eth/tracers: fix test
* eth/tracers: update assets
|
|\
| |
| | |
core/types: update incorrect comment
|
| | |
|
|\ \
| | |
| | | |
vendor, crypto, swarm: switch over to upstream sha3 package
|
| | | |
|
| | | |
|
|/ /
| |
| |
| |
| |
| |
| |
| | |
precompile-addresses (#18344)
* cmd/puppeth: fix panic error when export aleth genesis wo/ precompile-addresses
* cmd/puppeth: don't need to handle duplicate set
|
| | |
|
| |
| |
| |
| | |
mksully22) (#18376)
|
| | |
|
| |
| |
| |
| |
| |
| | |
* travis, appveyor: bump to Go 1.11.4
* internal/build: revert comment changes
|
| |
| |
| |
| |
| |
| | |
* add LGPL licence at update-licence.go
* add empty line
|
| | |
|
| |
| |
| |
| |
| |
| | |
(#18330)
|
| | |
|
|/
|
|
|
|
|
|
|
|
|
|
|
|
| |
* accounts/abi: fix name styling when unpacking abi fields w/ underscores
ABI fields with underscores that are being unpacked
into structs expect structs with following form:
int_one -> Int_one
whereas in abigen the generated structs are camelcased
int_one -> IntOne
so updated the unpack method to expect camelcased structs as well.
|
| |
|
| |
|
|
|
|
| |
(#17328)
|
| |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| |
* swarm/network: Revised depth calculation with tests
* swarm/network: WIP remove redundant "full" function
* swarm/network: WIP peerpot refactor
* swarm/network: Make test methods submethod of peerpot and embed kad
* swarm/network: Remove commented out code
* swarm/network: Rename health test functions
* swarm/network: Too many n's
* swarm/network: Change hive Healthy func to accept addresses
* swarm/network: Add Healthy proxy method for api in hive
* swarm/network: Skip failing test out of scope for PR
* swarm/network: Skip all tests dependent on SuggestPeers
* swarm/network: Remove commented code and useless kad Pof member
* swarm/network: Remove more unused code, add counter on depth test errors
* swarm/network: WIP Create Healthy assertion tests
* swarm/network: Roll back health related methods receiver change
* swarm/network: Hardwire network minproxbinsize in swarm sim
* swarm/network: Rework Health test to strict
Pending add test for saturation
And add test for as many as possible up to saturation
* swarm/network: Skip discovery tests (dependent on SuggestPeer)
* swarm/network: Remove useless minProxBinSize in stream
* swarm/network: Remove unnecessary testing.T param to assert health
* swarm/network: Implement t.Helper() in checkHealth
* swarm/network: Rename check back to assert now that we have helper magic
* swarm/network: Revert WaitTillHealthy change (deferred to nxt PR)
* swarm/network: Kademlia tests GotNN => ConnectNN
* swarm/network: Renames and comments
* swarm/network: Add comments
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| |
* p2p/protocols: accounting metrics rpc added (#847)
* p2p/protocols: accounting api documentation added (#847)
* p2p/protocols: accounting api doc updated (#847)
* p2p/protocols: accounting api doc update (#847)
* p2p/protocols: accounting api doc update (#847)
* p2p/protocols: fix file is not gofmted
* fix lint error
* updated comments after review
* add account balance to rpc
* naming changed after review
|
| |
|
| |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| |
* p2p/simulation: WIP minimal snapshot test
* p2p/simulation: Add snapshot create, load and verify to snapshot test
* build: add test tag for tests
* p2p/simulations, build: Revert travis change, build test sym always
* p2p/simulations: Add comments, timeout check on additional events
* p2p/simulation: Add benchmark template for minimal peer protocol init
* p2p/simulations: Remove unused code
* p2p/simulation: Correct timer reset
* p2p/simulations: Put snapshot check events in buffer and call blocking
* p2p/simulations: TestSnapshot fail if Load function returns early
* p2p/simulations: TestSnapshot wait for all connections before returning
* p2p/simulation: Revert to before wait for snap load (5e75594)
* p2p/simulations: add "conns after load" subtest to TestSnapshot
and nudge
|
|
|
|
|
|
| |
* core: sanitize more TxPoolConfig fields
* core: fix TestTransactionPendingMinimumAllowance
|
|
|
|
|
|
|
|
| |
* downloader: fix edgecase where returned index is OOB for downloader
* downloader: documentation
Co-Authored-By: holiman <martin@swende.se>
|
| |
|
| |
|
|
|
|
| |
(#18263)
|
|
|
|
|
|
|
|
|
|
|
|
| |
* swarm/network/stream: fix visualized_snapshot_sync_sim_test
* swarm/network/stream: updated visualized snapshot-test;data in p2p event
* swarm/network/stream: cleanup visualized snapshot sync test
* swarm/network/stream: re-enable t.Skip for visualized test
* swarm/network/stream: addressed PR comments
|
| |
|
| |
|
|
|
|
| |
* fix slice unpack bug in accounts/abi
|
|\ |
|
| | |
|
| | |
|
| | |
|
|/ |
|
| |
|
| |
|
|
|
| |
argument type and name were reversed
|
| |
|
|
|
|
|
|
|
|
|
|
| |
* usbwallet: check returned error when decoding hexstr
* Update accounts/usbwallet/ledger.go
Co-Authored-By: CoreyLin <514971757@qq.com>
* usbwallet: check hex decode error
|
| |
|
|
|
|
|
|
|
|
|
|
| |
* swarm/shed: add metrics to each shed db
* swarm/shed: push metrics prefix up
* swarm/shed: rename prefix to metricsPrefix
* swarm/shed: unexport Meter, remove Mutex for quit channel
|
| |
|
| |
|
|
|
|
|
|
|
|
| |
* geth/core/eth: implement constantinople override flag
* les: implemnent constantinople override flag for les clients
* cmd/geth, eth, les: fix typo, move flag to experimentals
|
|\
| |
| | |
cmd/faucet, cmd/puppeth: fix enode and compose regressions, expose UDP
|
| | |
|
|/ |
|
|
|
|
| |
swarm/api/http: add instrumentation (#18274)
|
|\
| |
| | |
params: update CHTs for the 1.8.20 release
|
| | |
|
|\ \
| | |
| | | |
cmd, eth: add support for `--whitelist <blocknum>=<hash>`
|
| | | |
|
| | |
| | |
| | |
| | |
| | | |
* Rejects peers that respond with a different hash for any of the passed in block numbers.
* Meant for emergency situations when the network forks unexpectedly.
|
|/ / |
|
| |
| |
| |
| |
| |
| | |
* Fix typo in interfaces.go
* Update interfaces.go
|
|\ \
| |/
|/| |
light: fix duplicated argument in bytes.Equal call
|
|/
|
|
| |
Most probably a copy/paste kind of error.
Found with gocritic `dupArg` checker.
|
|\
| |
| | |
node,rpc: remove unused log in ipc listener function
|
| | |
|
| | |
|
|\ \
| | |
| | | |
core/vm, eth: add standard json tracing into filesystem dumps
|
| | | |
|
|/ /
| |
| |
| | |
filesystem
|
|\ \
| | |
| | | |
params: set mainnet and Rinkeby Constantinople fork blocks
|
|/ / |
|
| |
| |
| |
| |
| |
| | |
* eth: fixed incorrect storage from prestate_tracer
* eth/tracers: updated assets.go
|
| | |
|
| | |
|
|\ \
| | |
| | | |
cmd/utils: max out the OS file allowance, don't cap to 2K
|
| | | |
|
| | |
| | |
| | |
| | |
| | |
| | |
| | |
| | |
| | |
| | |
| | |
| | |
| | |
| | |
| | |
| | |
| | |
| | | |
* swarm/network: Hive - do not notify peer if discovery is disabled
* p2p/simulations: validate all connections on loading a snapshot
* p2p/simulations: track all connections in on snapshot loading
* p2p/simulations: add snapshotLoadTimeout variable
* p2p/simulations: ignore control events in snapshot load
* p2p/simulations: simplify event loop synchronization
* p2p/simulations: return already connected error from Load function
* p2p/simulations: log warning on snapshot loading disconnection
|
| | |
| | |
| | |
| | |
| | |
| | |
| | |
| | |
| | |
| | |
| | | |
Until this commit, when sending an RPC request that called `NewEVM`, a blank `vm.Config`
would be taken so as to set some options, based on the default configuration. If some extra
configuration switches were passed to the blockchain, those would be ignored.
This PR adds a function to get the config from the blockchain, and this is what is now used
for RPC calls.
Some subsequent changes need to be made, see https://github.com/ethereum/go-ethereum/pull/17955#pullrequestreview-182237244
for the details of the discussion.
|
| | | |
|
| | | |
|
| | |
| | |
| | |
| | |
| | |
| | |
| | |
| | |
| | |
| | |
| | |
| | |
| | |
| | |
| | |
| | |
| | |
| | |
| | |
| | |
| | |
| | |
| | |
| | |
| | |
| | |
| | |
| | |
| | |
| | |
| | |
| | | |
* added tests for new abi encoding features (#4)
* added tests from bytes32[][] and string[]
* added offset to other types
* formatting
* Abi/dynamic types (#5)
* Revert "Abi/dynamic types (#5)" (#6)
This reverts commit dabca31d797623d43bd780721fc0ad461d24be53.
* Abi/dynamic types (#7)
* some cleanup
* Apply suggestions from code review
apply suggestions
Co-Authored-By: vedhavyas <vedhavyas.singareddi@gmail.com>
* added better formatting (#8)
* review chnages
* better comments
|
|\ \ \
| | | |
| | | | |
cmd/puppeth: implement chainspec converters
|
| | | | |
|
| | | | |
|
|/ / / |
|
|\ \ \
| | | |
| | | | |
cmd/puppeth: enforce lowercase network names
|
| | | | |
|
| | | |
| | | |
| | | | |
Changed http:// to https:// on JSON-RPC link in README.md
|
| | | | |
|
| | | | |
|
|/ / / |
|
| | |
| | |
| | |
| | | |
Fixes #15101 because hidapi is no longer being called from an
init function.
|
|/ /
| |
| |
| |
| |
| |
| |
| |
| |
| | |
* cmd/swarm: add flag for application name (swarm or swarm-private)
* cmd/swarm/swarm-smoke: return correct exit code
* cmd/swarm/swarm-smoke: remove colorable
* remove swarm/grafana_dashboards
|
|\ \ |
|
| | | |
|
| | |
| | |
| | |
| | |
| | |
| | | |
* accounts/keystore: reduce file name length
* accounts/keystore: reduce code line width
|
| | | |
|
| | | |
|
| | | |
|
| | |
| | |
| | | |
Add a call `statedb.Commit(true)` if the `Dump` flag is on, as otherwise the `storage` output in the dump is always empty.
|
| | | |
|
| | | |
|
|\ \ \
| | | |
| | | | |
eth/downloader: fix light client cht binary search issue
|
| | | | |
|
|\ \ \ \
| |/ / /
|/| | | |
params: update CHTs for the v1.8.19 release
|
|/ / / |
|
| | | |
|
| | | |
|
| | |
| | |
| | |
| | |
| | |
| | |
| | |
| | | |
* Update net.go
more simple
* Update net.go
|
|/ / |
|
| |
| |
| |
| |
| |
| |
| |
| | |
* swarm/network/stream/: added stream protocol version match tests
* Increase BZZ version due to streamer version change; version tests
* swarm/network: increased hive and test protocol version
|
| | |
|
| |
| |
| |
| |
| |
| |
| |
| |
| |
| | |
* cmd/swarm: fix ethersphere/go-ethereum#979:
update should error on manifest mistmatch
* cmd/swarm: fixed comments and remove sprintf from log.Info
* cmd/swarm: remove unnecessary comment
|
| | |
|
| | |
|
| | |
|
| | |
|
| | |
|
| |
| |
| |
| |
| | |
TryUpdate does not call t.trie.TryUpdate(key, value) and calls t.trie.TryDelete
instead. The update operation simply deletes the corresponding entry, though
it could retrieve later by odr. However, it adds further network overhead.
|
| | |
|
| | |
|
| | |
|
|\ \
| | |
| | | |
config: add constantinople block to testchainconfig
|
| | | |
|