Skip to content
Merged
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
5 changes: 4 additions & 1 deletion docker-compose.yml
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
version: "3.8"
services:
interbtc:
image: "interlayhq/interbtc:1.25.7-kintsugi"
platform: linux/amd64
command:
- --rpc-external
- --ws-external
Expand All @@ -13,6 +13,7 @@ services:
- "9944:9944"
bitcoind:
image: "ruimarinho/bitcoin-core:22"
platform: linux/amd64
command:
- -regtest
- -server
Expand All @@ -25,6 +26,7 @@ services:
- "18443:18443"
bitcoin-cli:
image: "ruimarinho/bitcoin-core:22"
platform: linux/amd64
command:
- /bin/sh
- -c
Expand All @@ -35,6 +37,7 @@ services:
bitcoin-cli -regtest -rpcconnect=bitcoind -rpcwait -rpcuser=rpcuser -rpcpassword=rpcpassword generatetoaddress 101 $${ALICE_ADDRESS}
electrs:
image: "interlayhq/electrs:latest"
platform: linux/amd64
command:
- electrs
- -vvvv
Expand Down
2 changes: 1 addition & 1 deletion runtime/src/integration/mod.rs
Original file line number Diff line number Diff line change
Expand Up @@ -51,7 +51,7 @@ pub async fn setup_provider(key: AccountKeyring) -> InterBtcParachain {
let parachain_rpc = InterBtcParachain::from_url_with_retry(
&"ws://127.0.0.1:9944".to_string(),
signer.clone(),
Duration::from_secs(20),
Duration::from_secs(100),
shutdown_tx,
)
.await
Expand Down