Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

refactor: libp2p #6630

Merged
merged 40 commits into from
Oct 30, 2024
Merged
Changes from 1 commit
Commits
Show all changes
40 commits
Select commit Hold shift + click to select a range
1e01559
initial
sdbondi Oct 3, 2024
1d873a0
wip
sdbondi Oct 7, 2024
dcd7aaa
wip
sdbondi Oct 8, 2024
2bfef79
wip
sdbondi Oct 10, 2024
5f0eb29
wip
sdbondi Oct 10, 2024
1165c3a
wip
sdbondi Oct 10, 2024
20ec341
Merge branch 'development' into libp2p
sdbondi Oct 10, 2024
50e73cc
wip
sdbondi Oct 10, 2024
3065b7a
wip
sdbondi Oct 10, 2024
bae57e8
wip
sdbondi Oct 11, 2024
45fc0b2
wip: wallet begins dun dun dun
sdbondi Oct 12, 2024
924e1b5
wip
sdbondi Oct 14, 2024
0ee154c
Merge branch 'development' into libp2p
sdbondi Oct 14, 2024
eba4f00
wip
sdbondi Oct 14, 2024
9714357
wip:wallet ffi
sdbondi Oct 15, 2024
3f9a237
Merge branch 'development' into libp2p
sdbondi Oct 15, 2024
51d3da5
machete
sdbondi Oct 15, 2024
dc855ae
wip: clean up wait for first bn connection code
sdbondi Oct 15, 2024
41d9dae
Merge branch 'development' into libp2p
sdbondi Oct 15, 2024
29d7466
wip:ffi
sdbondi Oct 15, 2024
7b2d1cb
wallet ffi and mmproxy
sdbondi Oct 16, 2024
67376b5
cucumbers
sdbondi Oct 16, 2024
261275c
clippies
sdbondi Oct 16, 2024
1f6d9be
Merge branch 'development' into libp2p
sdbondi Oct 16, 2024
bb470d3
improve error logging if networking fails in base node
sdbondi Oct 16, 2024
ce09dc0
always dial when using dial-peer cmd
sdbondi Oct 16, 2024
7b2a085
dont show loopback in whois, remove libtor feature from CI
sdbondi Oct 16, 2024
60d50c3
remove chat from CI
sdbondi Oct 16, 2024
c8b7cf7
cucumber ffi
sdbondi Oct 16, 2024
d9dfaee
Merge branch 'development' into libp2p
sdbondi Oct 17, 2024
0d5746b
remove comms from test_utils
sdbondi Oct 17, 2024
45a437d
code cleanup and use nightly-2024-10-14 in CI
sdbondi Oct 17, 2024
626eb87
rust nightly sweetspot 2024-08-01
sdbondi Oct 17, 2024
92880e8
fix cucumbers
sdbondi Oct 18, 2024
271ee02
Merge branch 'development' into libp2p
sdbondi Oct 18, 2024
7fcfc5e
increase gossipsub message size
sdbondi Oct 24, 2024
aca83cf
Merge branch 'development' into libp2p
sdbondi Oct 30, 2024
659172d
merge fixes
sdbondi Oct 30, 2024
7dbac69
review comments
sdbondi Oct 30, 2024
60e0fb5
feat: impl supported protocols, unban all peers, autonat status
sdbondi Oct 30, 2024
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
Prev Previous commit
Next Next commit
merge fixes
sdbondi committed Oct 30, 2024
commit 659172dda3f1633638994a329b5dcadd116708a5
65 changes: 33 additions & 32 deletions Cargo.lock

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

1 change: 0 additions & 1 deletion applications/minotari_node/src/bootstrap.rs
Original file line number Diff line number Diff line change
@@ -170,7 +170,6 @@ where B: BlockchainBackend + 'static
let rpc_server = RpcServer::builder()
.with_maximum_simultaneous_sessions(config.rpc_max_simultaneous_sessions)
.with_maximum_sessions_per_client(config.rpc_max_sessions_per_peer)
.with_cull_oldest_peer_rpc_connection_on_full(config.cull_oldest_peer_rpc_connection_on_full)
.finish();

// Add your RPC services here ‍🏴‍☠️️☮️🌊
Loading