File tree Expand file tree Collapse file tree 1 file changed +3
-8
lines changed Expand file tree Collapse file tree 1 file changed +3
-8
lines changed Original file line number Diff line number Diff line change @@ -16,16 +16,11 @@ use reth_trie_db::MerklePatriciaTrie;
16
16
17
17
/// The Scroll node implementation.
18
18
#[ derive( Clone , Debug , Default ) ]
19
- pub struct ScrollNode {
20
- /// A bool that represents if the transaction broadcast should be disabled.
21
- pub disable_tx_broadcast : bool ,
22
- /// A bool that represents if the transaction receiving should be disabled.
23
- pub disable_tx_receive : bool ,
24
- }
19
+ pub struct ScrollNode ;
25
20
26
21
impl ScrollNode {
27
22
/// Returns a [`ComponentsBuilder`] configured for a regular Ethereum node.
28
- pub fn components < Node > ( & self ) -> ComponentsBuilder <
23
+ pub fn components < Node > ( ) -> ComponentsBuilder <
29
24
Node ,
30
25
ScrollPoolBuilder ,
31
26
BasicPayloadServiceBuilder < ScrollPayloadBuilderBuilder > ,
74
69
> ;
75
70
76
71
fn components_builder ( & self ) -> Self :: ComponentsBuilder {
77
- Self :: components ( self )
72
+ Self :: components ( )
78
73
}
79
74
80
75
fn add_ons ( & self ) -> Self :: AddOns {
You can’t perform that action at this time.
0 commit comments