Skip to content

Commit

Permalink
Fix configs
Browse files Browse the repository at this point in the history
  • Loading branch information
ercecan committed Oct 1, 2024
1 parent 68f32a2 commit 59eecf7
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 7 deletions.
9 changes: 3 additions & 6 deletions resources/configs/mock-dockerized/rollup_config.toml
Original file line number Diff line number Diff line change
Expand Up @@ -9,16 +9,13 @@ db_path = "resources/dbs/da-db"

[storage]
# The path to the rollup's data directory. Paths that do not begin with `/` are interpreted as relative paths.
path = "resources/dbs/full-node-db"
path = "resources/dbs/sequencer-db"
db_max_open_files = 5000

[rpc]
# the host and port to bind the rpc server for
bind_host = "0.0.0.0"
bind_port = 8545
bind_port = 12345
max_connections = 10000
enable_subscriptions = true
max_subscriptions_per_connection = 100

[runner]
sequencer_client_url = "http://0.0.0.0:8545"
include_tx_body = false
2 changes: 1 addition & 1 deletion resources/hive/Dockerfile
Original file line number Diff line number Diff line change
Expand Up @@ -18,4 +18,4 @@ RUN SKIP_GUEST_BUILD=1 cargo build --release --bin citrea
EXPOSE 8545


ENTRYPOINT ["sh", "-c", "./resources/configs/mock-dockerized/publish_da_block.sh & ./target/release/citrea --genesis-paths ./resources/genesis/mock-dockerized --rollup-config-path ./configs/mock-dockerized/rollup_config.toml --sequencer-config-path ./configs/mock-dockerized/sequencer_config.toml"]
ENTRYPOINT ["sh", "-c", "./resources/configs/mock-dockerized/publish_da_block.sh & ./target/release/citrea --genesis-paths ./resources/genesis/mock-dockerized --rollup-config-path ./resources/configs/mock-dockerized/rollup_config.toml --sequencer-config-path ./resources/configs/mock-dockerized/sequencer_config.toml"]

0 comments on commit 59eecf7

Please sign in to comment.