Skip to content
Closed
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion ci/Jenkinsfile
Original file line number Diff line number Diff line change
Expand Up @@ -10,7 +10,7 @@ library '[email protected]'

pipeline {
/* This way we run the same Jenkinsfile on different platforms. */
agent { label params.AGENT_LABEL }
agent { label "container" }

parameters {
string(
Expand Down
2 changes: 1 addition & 1 deletion ci/nix.Jenkinsfile
Original file line number Diff line number Diff line change
Expand Up @@ -10,7 +10,7 @@ library '[email protected]'

pipeline {
/* This way we run the same Jenkinsfile on different platforms. */
agent { label params.AGENT_LABEL }
agent { label "container" }

parameters {
string(
Expand Down
2 changes: 1 addition & 1 deletion vendor/holesky
Submodule holesky updated 2 files
+0 −1 README.md
+0 −16 metadata/besu.json
2 changes: 1 addition & 1 deletion vendor/mainnet
Submodule mainnet updated 1 files
+0 −2 metadata/besu.json
2 changes: 1 addition & 1 deletion vendor/nim-bearssl
2 changes: 1 addition & 1 deletion vendor/nim-chronicles
2 changes: 1 addition & 1 deletion vendor/nim-eth
Submodule nim-eth updated 53 files
+1 −0 README.md
+302 −0 doc/p2p.md
+10 −3 eth.nimble
+2 −2 eth/common/eth_hash.nim
+3 −0 eth/common/eth_types.nim
+6 −9 eth/common/eth_types_rlp.nim
+2 −54 eth/common/receipts.nim
+25 −68 eth/common/receipts_rlp.nim
+16 −0 eth/common/transactions.nim
+108 −60 eth/common/transactions_rlp.nim
+2 −1 eth/eip1559.nim
+1 −1 eth/net/nat.nim
+2 −6 eth/p2p/discoveryv5/enr.nim
+1 −1 eth/p2p/discoveryv5/node.nim
+10 −37 eth/p2p/discoveryv5/protocol.nim
+6 −9 eth/p2p/discoveryv5/routing_table.nim
+1 −13 eth/p2p/discoveryv5/sessions.nim
+2 −2 eth/rlp.nim
+4 −1 eth/rlp/bin/rlp_inspect.nim
+7 −3 eth/rlp/bitseqs.nim
+30 −46 eth/rlp/default_writer.nim
+52 −65 eth/rlp/hash_writer.nim
+60 −138 eth/rlp/length_writer.nim
+9 −10 eth/rlp/object_serialization.nim
+3 −3 eth/rlp/priv/defs.nim
+3 −1 eth/rlp/results.nim
+0 −62 eth/rlp/stacked_counters.nim
+66 −81 eth/rlp/two_pass_writer.nim
+4 −14 eth/rlp/utils.nim
+53 −48 eth/rlp/writer.nim
+109 −154 eth/trie/hexary.nim
+61 −50 eth/trie/hexary_proof_verification.nim
+129 −259 eth/trie/nibbles.nim
+36 −95 eth/trie/ordered_trie.nim
+2 −2 eth/utp/utp_discv5_protocol.nim
+9 −8 eth/utp/utp_router.nim
+38 −38 eth/utp/utp_socket.nim
+3 −27 tests/common/test_common.nim
+11 −8 tests/common/test_keys.nim
+1 −20 tests/common/test_receipts.nim
+149 −118 tests/common/test_transactions.nim
+3 −0 tests/nim.cfg
+1 −1 tests/p2p/test_discoveryv5.nim
+0 −22 tests/p2p/test_routing_table.nim
+14 −14 tests/rlp/profiler/profiler.nim
+2 −2 tests/rlp/test_hashes.nim
+1 −13 tests/rlp/test_object_serialization.nim
+5 −21 tests/rlp/test_rlp_profiler.nim
+5 −4 tests/trie/all_tests.nim
+14 −14 tests/trie/test_hexary_trie.nim
+0 −183 tests/trie/test_nibbles.nim
+1 −104 tests/trie/test_ordered_trie.nim
+41 −116 tools/dcli.nim
2 changes: 1 addition & 1 deletion vendor/nim-eth2-scenarios
2 changes: 1 addition & 1 deletion vendor/nim-kzg4844
Submodule nim-kzg4844 updated 1 files
+1 −1 kzg4844/csources
2 changes: 1 addition & 1 deletion vendor/nim-libbacktrace
2 changes: 1 addition & 1 deletion vendor/nim-libp2p
Submodule nim-libp2p updated 170 files
2 changes: 1 addition & 1 deletion vendor/nim-metrics
Submodule nim-metrics updated 1 files
+1 −1 metrics.nimble
2 changes: 1 addition & 1 deletion vendor/nim-results
Submodule nim-results updated 1 files
+2 −1 results.nimble
2 changes: 1 addition & 1 deletion vendor/nim-secp256k1
2 changes: 1 addition & 1 deletion vendor/nim-sqlite3-abi
2 changes: 1 addition & 1 deletion vendor/nim-taskpools
2 changes: 1 addition & 1 deletion vendor/nim-testutils
2 changes: 1 addition & 1 deletion vendor/nim-unittest2
2 changes: 1 addition & 1 deletion vendor/nim-zlib
2 changes: 1 addition & 1 deletion vendor/nimbus-build-system
2 changes: 1 addition & 1 deletion vendor/sepolia