Skip to content

Commit d485f47

Browse files
authored
feat: rollup node integration (#328)
* export ScrollEngineValidatorBuilder * export ScrollNodeTypes * update dev genesis
1 parent a6f827a commit d485f47

File tree

2 files changed

+3
-3
lines changed

2 files changed

+3
-3
lines changed

crates/scroll/chainspec/res/genesis/dev.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@
22
"nonce": "0x0",
33
"timestamp": "0x6490fdd2",
44
"extraData": "0x",
5-
"gasLimit": "0x1c9c380",
5+
"gasLimit": "0x1312D00",
66
"baseFeePerGas": "0x0",
77
"difficulty": "0x0",
88
"mixHash": "0x0000000000000000000000000000000000000000000000000000000000000000",

crates/scroll/node/src/lib.rs

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -6,15 +6,15 @@ pub use args::ScrollRollupArgs;
66
mod builder;
77
pub use builder::{
88
consensus::ScrollConsensusBuilder,
9-
engine::ScrollEngineValidator,
9+
engine::{ScrollEngineValidator, ScrollEngineValidatorBuilder},
1010
execution::ScrollExecutorBuilder,
1111
network::{ScrollHeaderTransform, ScrollNetworkBuilder, ScrollNetworkPrimitives},
1212
payload::ScrollPayloadBuilderBuilder,
1313
pool::ScrollPoolBuilder,
1414
};
1515

1616
mod addons;
17-
pub use addons::{ScrollAddOns, ScrollAddOnsBuilder};
17+
pub use addons::{ScrollAddOns, ScrollAddOnsBuilder, ScrollNodeTypes};
1818

1919
mod node;
2020
pub use node::ScrollNode;

0 commit comments

Comments
 (0)