Skip to content

Commit

Permalink
todo->err in chains.rs + add index.chunk for paradexsepolia
Browse files Browse the repository at this point in the history
  • Loading branch information
paulbalaji committed Jan 6, 2025
1 parent a90888e commit 7dad56e
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 3 deletions.
3 changes: 2 additions & 1 deletion rust/main/config/testnet_config.json
Original file line number Diff line number Diff line change
Expand Up @@ -2200,7 +2200,8 @@
"validatorAnnounce": "0x003c6f15267867a2668c2a5133ee91e4db14eb67e36912ceb134df86facdf7d9",
"interchainGasPaymaster": "0x0000000000000000000000000000000000000000",
"index": {
"from": 109509
"from": 109509,
"chunk": 999
}
}
},
Expand Down
4 changes: 2 additions & 2 deletions rust/main/hyperlane-base/src/settings/chains.rs
Original file line number Diff line number Diff line change
Expand Up @@ -733,7 +733,7 @@ impl ChainConf {
Ok(ism as Box<dyn RoutingIsm>)
}
ChainConnectionConf::Starknet(_) => {
todo!("Starknet does not support routing ISM yet")
Err(eyre!("Sealevel does not support routing ISM yet")).context(ctx)
}
}
.context(ctx)
Expand Down Expand Up @@ -809,7 +809,7 @@ impl ChainConf {
Err(eyre!("Cosmos does not support CCIP read ISM yet")).context(ctx)
}
ChainConnectionConf::Starknet(_) => {
todo!("Starknet does not support CCIP read ISM yet")
Err(eyre!("Starknet does not support CCIP read ISM yet")).context(ctx)
}
}
.context(ctx)
Expand Down

0 comments on commit 7dad56e

Please sign in to comment.