Skip to content
Closed
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
9 changes: 6 additions & 3 deletions Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -4,8 +4,11 @@ resolver = "2"
# See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html

[workspace.dependencies]
cw-orch = "0.20.1"
cw-orch = { version = "0.20.1" }
abstract-app = { version = "0.21.0" }
abstract-interface = { version = "0.21.0" }
abstract-dex-adapter = {git = "https://github.com/abstractsdk/abstract.git", tag = "v0.21.0"}
abstract-client = { version = "0.21.0" }
abstract-dex-adapter = { git = "https://github.com/abstractsdk/abstract.git", tag = "v0.21.0" }
abstract-client = { version = "0.21.0" }

[patch.crates-io]
cw-orch = { git = "https://github.com/AbstractSDK/cw-orchestrator.git", branch = "misha/orc-79-fix-cw-orch-crashing-when-theres-no-state-file" }
4 changes: 2 additions & 2 deletions Dockerfile
Original file line number Diff line number Diff line change
Expand Up @@ -28,8 +28,8 @@ RUN apt-get update && apt-get install -y libssl-dev ca-certificates && rm -rf /v
RUN mv target/release/prod .

# Patch until https://linear.app/abstract-sdk/issue/ORC-79/fix-cw-orch-crashing-when-theres-no-state-file is fixed.
RUN mkdir ~/.cw-orchestrator
RUN echo "{}" > ~/.cw-orchestrator/state.json
# RUN mkdir ~/.cw-orchestrator
# RUN echo "{}" > ~/.cw-orchestrator/state.json

# Command to run the binary
CMD ["./prod", "--fcd", "1h", "--acd", "1d"]