Skip to content

Commit

Permalink
remove entrypoint
Browse files Browse the repository at this point in the history
Signed-off-by: onur-ozkan <work@onurozkan.dev>
  • Loading branch information
onur-ozkan committed Jun 10, 2024
1 parent 27f5453 commit 52462a1
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 4 deletions.
3 changes: 1 addition & 2 deletions mm2src/mm2_main/tests/docker_tests/docker_tests_common.rs
Original file line number Diff line number Diff line change
Expand Up @@ -404,8 +404,7 @@ pub fn ibc_relayer_node<'a>(docker: &'a Cli) -> DockerNode<'a> {

let image = GenericImage::new(IBC_RELAYER_IMAGE, "latest")
.with_volume(relayer_node_state_dir.to_str().unwrap(), "/home/relayer/.relayer");
let args = vec!["--entrypoint='rly start'".into()];
let image = RunnableImage::from((image, args)).with_network("host");
let image = RunnableImage::from((image, vec![])).with_network("host");
let container = docker.run(image);

DockerNode {
Expand Down
4 changes: 2 additions & 2 deletions mm2src/mm2_main/tests/docker_tests/tendermint_tests.rs
Original file line number Diff line number Diff line change
Expand Up @@ -314,7 +314,7 @@ fn test_custom_gas_limit_on_tendermint_withdraw() {

#[test]
fn test_tendermint_ibc_withdraw() {
// visit `{rpc_url}/ibc/core/channel/v1/channels?pagination.limit=10000` to see the full list of ibc channels
// visit `{swagger_address}/ibc/core/channel/v1/channels?pagination.limit=10000` to see the full list of ibc channels
const IBC_SOURCE_CHANNEL: &str = "channel-0";

const IBC_TARGET_ADDRESS: &str = "cosmos1r5v5srda7xfth3hn2s26txvrcrntldjumt8mhl";
Expand Down Expand Up @@ -360,7 +360,7 @@ fn test_tendermint_ibc_withdraw() {

#[test]
fn test_tendermint_ibc_withdraw_hd() {
// visit `{rpc_url}/ibc/core/channel/v1/channels?pagination.limit=10000` to see the full list of ibc channels
// visit `{swagger_address}/ibc/core/channel/v1/channels?pagination.limit=10000` to see the full list of ibc channels
const IBC_SOURCE_CHANNEL: &str = "channel-0";

const IBC_TARGET_ADDRESS: &str = "nuc150evuj4j7k9kgu38e453jdv9m3u0ft2n4fgzfr";
Expand Down

0 comments on commit 52462a1

Please sign in to comment.