-
Notifications
You must be signed in to change notification settings - Fork 2.9k
Connect P2p with TxPool #590
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
Merged
Merged
Changes from all commits
Commits
Show all changes
48 commits
Select commit
Hold shift + click to select a range
2dc5c35
txpool reimpled
ControlCplusControlV 3ab7525
Tests go green
ControlCplusControlV 3cc1ae2
clippy
ControlCplusControlV 40e0384
final touches?
ControlCplusControlV beca66d
clippy fix
ControlCplusControlV 68e21fa
clippy maybe?
ControlCplusControlV 9b56bd8
Merge branch 'master' into controlc/p2p_tx
ControlCplusControlV d866c11
Merge branch 'master' into controlc/p2p_tx
ControlCplusControlV 716a3fa
updated fmt
ControlCplusControlV e248f8c
ci passes?
ControlCplusControlV d8edc4f
Merge branch 'master' into controlc/p2p_tx
ControlCplusControlV bf32dad
Merge branch 'master' into controlc/p2p_tx
ControlCplusControlV cd62488
Merge branch 'master' into controlc/p2p_tx
bvrooman 3c3f514
Error when tx_receiver channel sender is dropped
bvrooman e9b8cc4
Updated fmt
bvrooman 06d0e6b
Spelling
bvrooman 5a2e7a6
Update modules channel wiring
bvrooman afaa697
Merge branch 'master' into controlc/p2p_tx
ControlCplusControlV 386e073
Keep alive for incoming_tx_sender
bvrooman afcf626
Merge branch 'controlc/p2p_tx' of https://github.com/FuelLabs/fuel-co…
bvrooman 58034a3
Update features config and tests
bvrooman 41669d3
Revert unrelated change
bvrooman 64dd2e3
Merge branch 'master' into controlc/p2p_tx
ControlCplusControlV 03300f8
test issues now
ControlCplusControlV 58f4654
fixes
ControlCplusControlV 84f0e18
fmt
ControlCplusControlV a081d96
was it that easy?
ControlCplusControlV a6c942c
oops
ControlCplusControlV f0ea4ba
New testcase for tx gossip
ControlCplusControlV 68c780f
Fmt
bvrooman de0e154
Test p2p connection and integ
bvrooman db0bb65
add tx gossip to default topics
Voxelot 4e1946c
Merge branch 'master' into controlc/p2p_tx
ControlCplusControlV a2498d7
Clean up use statements and dbg
bvrooman 2f2e7d0
Refactor node_config
bvrooman 93c3890
Simplify gossip test mod with feature flag
bvrooman d4e2fac
Remove readme changes
bvrooman df2fe70
Minor cleanup
bvrooman fe89f69
Minor cleanup
bvrooman cb7fcda
Add all gossip topics to default p2p config
bvrooman f63683a
Fix
bvrooman 9b79b61
Merge branch 'master' into controlc/p2p_tx
bvrooman 4a2346c
Clean up txpool cargo
bvrooman e1da109
Merge branch 'controlc/p2p_tx' of https://github.com/FuelLabs/fuel-co…
bvrooman be1a152
Remove debug statements
bvrooman b9a7812
Merge branch 'master' into controlc/p2p_tx
ControlCplusControlV 427c4d8
Merge branch 'master' into controlc/p2p_tx
ControlCplusControlV c37a8c6
Remove Feature Flags from Tx Gossiping (#664)
ControlCplusControlV File filter
Filter by extension
Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
There are no files selected for viewing
This file contains hidden or 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
| Original file line number | Diff line number | Diff line change |
|---|---|---|
|
|
@@ -27,4 +27,3 @@ rstest = "0.15" | |
|
|
||
| [features] | ||
| test-helpers = ["fuel-core-interfaces/test-helpers"] | ||
|
|
||
This file contains hidden or 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 hidden or 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 hidden or 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 hidden or 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
| Original file line number | Diff line number | Diff line change |
|---|---|---|
|
|
@@ -7,3 +7,6 @@ pub mod schema; | |
| pub mod service; | ||
| pub mod state; | ||
| pub mod tx_pool; | ||
|
|
||
| #[cfg(feature = "p2p")] | ||
| pub use fuel_p2p; | ||
This file contains hidden or 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 hidden or 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 hidden or 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 hidden or 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 hidden or 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 hidden or 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
| Original file line number | Diff line number | Diff line change |
|---|---|---|
|
|
@@ -14,3 +14,5 @@ mod node_info; | |
| mod resource; | ||
| mod snapshot; | ||
| mod tx; | ||
| #[cfg(feature = "p2p")] | ||
| mod tx_gossip; | ||
Oops, something went wrong.
Add this suggestion to a batch that can be applied as a single commit.
This suggestion is invalid because no changes were made to the code.
Suggestions cannot be applied while the pull request is closed.
Suggestions cannot be applied while viewing a subset of changes.
Only one suggestion per line can be applied in a batch.
Add this suggestion to a batch that can be applied as a single commit.
Applying suggestions on deleted lines is not supported.
You must change the existing code in this line in order to create a valid suggestion.
Outdated suggestions cannot be applied.
This suggestion has been applied or marked resolved.
Suggestions cannot be applied from pending reviews.
Suggestions cannot be applied on multi-line comments.
Suggestions cannot be applied while the pull request is queued to merge.
Suggestion cannot be applied right now. Please check back later.
Uh oh!
There was an error while loading. Please reload this page.