-
Notifications
You must be signed in to change notification settings - Fork 37
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Upgrade consensus-spec-tests to v1.5.0-beta.2
- Update`eth2_libp2p` & move blob count validations of received requests to `eth2_libp2p` - Add `POST /eth/v2/beacon/pool/attestations` endpoint Co-authored-by: Povilas Liubauskas <povilas@grandine.io>
- Loading branch information
Showing
32 changed files
with
905 additions
and
617 deletions.
There are no files selected for viewing
Large diffs are not rendered by default.
Oops, something went wrong.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Submodule consensus-spec-tests
updated
8321 files
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Submodule eth2_libp2p
updated
31 files
+3 −4 | gossipsub/Cargo.toml | |
+1 −1 | gossipsub/src/backoff.rs | |
+45 −17 | gossipsub/src/behaviour.rs | |
+1 −0 | gossipsub/src/behaviour/tests.rs | |
+7 −0 | gossipsub/src/gossip_promises.rs | |
+5 −13 | gossipsub/src/handler.rs | |
+32 −0 | gossipsub/src/metrics.rs | |
+1 −1 | gossipsub/src/peer_score.rs | |
+6 −18 | src/config.rs | |
+10 −0 | src/discovery/enr.rs | |
+1 −1 | src/discovery/mod.rs | |
+2 −3 | src/discovery/subnet_predicate.rs | |
+0 −1 | src/lib.rs | |
+31 −3 | src/peer_manager/mod.rs | |
+4 −5 | src/peer_manager/network_behaviour.rs | |
+1 −1 | src/peer_manager/peerdb.rs | |
+20 −2 | src/peer_manager/peerdb/peer_info.rs | |
+61 −43 | src/rpc/codec.rs | |
+2 −2 | src/rpc/config.rs | |
+44 −5 | src/rpc/handler.rs | |
+4 −3 | src/rpc/methods.rs | |
+6 −5 | src/rpc/mod.rs | |
+12 −35 | src/rpc/protocol.rs | |
+17 −7 | src/rpc/rate_limiter.rs | |
+16 −4 | src/rpc/self_limiter.rs | |
+11 −12 | src/service/gossip_cache.rs | |
+15 −16 | src/service/mod.rs | |
+12 −5 | src/service/utils.rs | |
+1 −1 | src/types/mod.rs | |
+18 −15 | src/types/topics.rs | |
+9 −32 | tests/rpc_tests.rs |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Oops, something went wrong.