-
Notifications
You must be signed in to change notification settings - Fork 116
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
eth: bump for rlpx transport fixes (#2830)
* eth: bump for rlpx transport fixes * bump
- Loading branch information
1 parent
f201eb6
commit 39e6b63
Showing
1 changed file
with
1 addition
and
1 deletion.
There are no files selected for viewing
Submodule nim-eth
updated
18 files
+7 −1 | eth/common/eth_hash.nim | |
+2 −2 | eth/p2p.nim | |
+161 −345 | eth/p2p/auth.nim | |
+110 −80 | eth/p2p/discovery.nim | |
+2 −1 | eth/p2p/discoveryv5/routing_table.nim | |
+0 −2 | eth/p2p/kademlia.nim | |
+1 −1 | eth/p2p/p2p_backends_helpers.nim | |
+2 −73 | eth/p2p/p2p_protocol_dsl.nim | |
+8 −7 | eth/p2p/private/p2p_types.nim | |
+285 −456 | eth/p2p/rlpx.nim | |
+22 −41 | eth/p2p/rlpxcrypt.nim | |
+243 −0 | eth/p2p/rlpxtransport.nim | |
+1 −0 | tests/p2p/all_tests.nim | |
+16 −261 | tests/p2p/test_auth.nim | |
+130 −166 | tests/p2p/test_crypt.nim | |
+3 −0 | tests/p2p/test_discoveryv5.nim | |
+60 −0 | tests/p2p/test_rlpxtransport.nim | |
+1 −2 | tests/rlp/test_api_usage.nim |