Skip to content

Commit

Permalink
Fix hive (#1263)
Browse files Browse the repository at this point in the history
* Fix configs

* Remove publish mock block from docker

* Update port for hive

* Rename config in hive
  • Loading branch information
ercecan authored Oct 2, 2024
1 parent fbc2437 commit bbbe7bf
Show file tree
Hide file tree
Showing 3 changed files with 4 additions and 27 deletions.
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
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
3 changes: 2 additions & 1 deletion resources/hive/Dockerfile
Original file line number Diff line number Diff line change
Expand Up @@ -18,4 +18,5 @@ RUN SKIP_GUEST_BUILD=1 cargo build --release --bin citrea
EXPOSE 8545


ENTRYPOINT ["sh", "-c", "./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", "./target/release/citrea --genesis-paths ./resources/genesis/mock-dockerized --rollup-config-path ./resources/configs/mock-dockerized/sequencer_rollup_config.toml --sequencer-config-path ./resources/configs/mock-dockerized/sequencer_config.toml"]

21 changes: 0 additions & 21 deletions resources/hive/hive_publish_block.sh

This file was deleted.

0 comments on commit bbbe7bf

Please sign in to comment.