Skip to content

Commit

Permalink
fixup! Merge branch 'yuji/ibc-rs-0.47.0' (#2084)
Browse files Browse the repository at this point in the history
  • Loading branch information
tzemanovic committed Nov 10, 2023
1 parent 3646458 commit d6d2dd1
Show file tree
Hide file tree
Showing 5 changed files with 8 additions and 8 deletions.
2 changes: 1 addition & 1 deletion Cargo.lock

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

8 changes: 4 additions & 4 deletions benches/native_vps.rs
Original file line number Diff line number Diff line change
Expand Up @@ -952,7 +952,7 @@ fn ibc_vp_validate_action(c: &mut Criterion) {
// Connection handshake
let msg = MsgConnectionOpenInit {
client_id_on_a: ClientId::new(
ClientType::new("01-tendermint".to_string()).unwrap(),
ClientType::new("01-tendermint").unwrap(),
1,
)
.unwrap(),
Expand Down Expand Up @@ -1033,7 +1033,7 @@ fn ibc_vp_validate_action(c: &mut Criterion) {
actions.set_validation_params(ibc.validation_params().unwrap());

let module = TransferModule::new(ctx);
actions.add_transfer_route(module.module_id(), module);
actions.add_transfer_module(module.module_id(), module);

group.bench_function(bench_name, |b| {
b.iter(|| actions.validate(&tx_data).unwrap())
Expand All @@ -1050,7 +1050,7 @@ fn ibc_vp_execute_action(c: &mut Criterion) {
// Connection handshake
let msg = MsgConnectionOpenInit {
client_id_on_a: ClientId::new(
ClientType::new("01-tendermint".to_string()).unwrap(),
ClientType::new("01-tendermint").unwrap(),
1,
)
.unwrap(),
Expand Down Expand Up @@ -1131,7 +1131,7 @@ fn ibc_vp_execute_action(c: &mut Criterion) {
actions.set_validation_params(ibc.validation_params().unwrap());

let module = TransferModule::new(ctx);
actions.add_transfer_route(module.module_id(), module);
actions.add_transfer_module(module.module_id(), module);

group.bench_function(bench_name, |b| {
b.iter(|| actions.execute(&tx_data).unwrap())
Expand Down
2 changes: 1 addition & 1 deletion benches/txs.rs
Original file line number Diff line number Diff line change
Expand Up @@ -721,7 +721,7 @@ fn ibc(c: &mut Criterion) {
// Connection handshake
let msg = MsgConnectionOpenInit {
client_id_on_a: ClientId::new(
ClientType::new("01-tendermint".to_string()).unwrap(),
ClientType::new("01-tendermint").unwrap(),
1,
)
.unwrap(),
Expand Down
2 changes: 1 addition & 1 deletion wasm/Cargo.lock

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

2 changes: 1 addition & 1 deletion wasm_for_tests/wasm_source/Cargo.lock

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

0 comments on commit d6d2dd1

Please sign in to comment.