Skip to content

Commit

Permalink
minor fixes
Browse files Browse the repository at this point in the history
  • Loading branch information
Haider-Ali-DS authored and dvc94ch committed Jun 29, 2023
1 parent a3482f2 commit 24e09fa
Show file tree
Hide file tree
Showing 2 changed files with 5 additions and 3 deletions.
7 changes: 4 additions & 3 deletions docker-compose.yml
Original file line number Diff line number Diff line change
Expand Up @@ -62,9 +62,10 @@ services:

astar:
image: "staketechnologies/astar-collator:latest"
command: "astar-collator --chain dev --rpc-cors all --ws-external --alice --blocks-pruning archive --state-pruning archive --base-path /polkadot"
command: "astar-collator --chain dev --ws-port 9994 --rpc-port 9995 --rpc-cors all --ws-external --alice --blocks-pruning archive --state-pruning archive --base-path /polkadot"
expose:
- "9944"
- "9994"
- "9995"
user: root
ulimits:
nofile:
Expand Down Expand Up @@ -112,7 +113,7 @@ services:

connector-astar:
image: "analoglabs/connector-astar"
command: "--network dev --addr 0.0.0.0:8082 --node-addr astar:9944 --path /data"
command: "--network dev --addr 0.0.0.0:8083 --node-addr astar:9994 --path /data"
ports:
- "8083:8083"
depends_on:
Expand Down
1 change: 1 addition & 0 deletions rosetta-client/src/lib.rs
Original file line number Diff line number Diff line change
Expand Up @@ -52,6 +52,7 @@ pub fn create_config(blockchain: &str, network: &str) -> Result<BlockchainConfig
match blockchain {
"bitcoin" => rosetta_config_bitcoin::config(network),
"ethereum" => rosetta_config_ethereum::config(network),
"astar" => rosetta_config_astar::config(network),
"polkadot" => rosetta_config_polkadot::config(network),
_ => anyhow::bail!("unsupported blockchain"),
}
Expand Down

0 comments on commit 24e09fa

Please sign in to comment.