From 6879f56c0300d7045536d3fc9285dd7608e7a1ba Mon Sep 17 00:00:00 2001 From: liyukun Date: Wed, 6 Sep 2023 12:06:37 +0800 Subject: [PATCH] chore: remove useless comment --- tools/ibc-test/src/framework/utils/ckb.rs | 36 ----------------------- 1 file changed, 36 deletions(-) diff --git a/tools/ibc-test/src/framework/utils/ckb.rs b/tools/ibc-test/src/framework/utils/ckb.rs index 9c56b32e7..dd36da18c 100644 --- a/tools/ibc-test/src/framework/utils/ckb.rs +++ b/tools/ibc-test/src/framework/utils/ckb.rs @@ -226,42 +226,6 @@ pub fn prepare_ckb_chain( check_and_wait_ckb_transaction(output.result, port); }); - // let output = send_tx( - // fs::read_to_string("txs/deploy_connection.json").unwrap(), - // port, - // ) - // .unwrap(); - // println!("deploying connection: {output}"); - - // // check `txs/deploy_connection.json` - // check_and_wait_ckb_transaction(output.result, port); - - // let output = send_tx(fs::read_to_string("txs/deploy_channel.json").unwrap(), port).unwrap(); - // println!("deploying channel: {output}"); - - // // check `txs/deploy_channel.json` - // check_and_wait_ckb_transaction(output.result, port); - - // let output = send_tx( - // fs::read_to_string("txs/deploy_packet_metadata.json").unwrap(), - // port, - // ) - // .unwrap(); - // println!("deploying packet and metadata: {output}"); - - // // check `txs/deploy_packet_metadata.json` - // check_and_wait_ckb_transaction(output.result, port); - - // let output = send_tx( - // fs::read_to_string("txs/create_connection.json").unwrap(), - // port, - // ) - // .unwrap(); - // println!("deploying create connection: {output}"); - - // // check `txs/create_connection.json` - // check_and_wait_ckb_transaction(output.result, port); - (ckb_process, miner_process) }