Skip to content

Commit

Permalink
chore(movement-ibc): trying to fix fmt manually
Browse files Browse the repository at this point in the history
Signed-off-by: Kaan Caglan <[email protected]>
  • Loading branch information
Caglankaan committed Jan 3, 2025
1 parent 4173799 commit 65852d1
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 5 deletions.
6 changes: 2 additions & 4 deletions move/move-ibc/sources/ibc.move
Original file line number Diff line number Diff line change
Expand Up @@ -591,9 +591,7 @@ module ibc::ibc {
hash::sha2_256(*vector::borrow(&consensus_states, i))
);

event::emit(
ClientUpdated { client_id, client_type: client_type, height }
);
event::emit(ClientUpdated { client_id, client_type: client_type, height });

i = i + 1;
};
Expand Down Expand Up @@ -1882,4 +1880,4 @@ module ibc::ibc {
// assert!(*channel::version(&stored_channel) == string::utf8(b"counterparty-version-0"), 9002);
// assert!(*channel::chan_counterparty_channel_id(&stored_channel) == string::utf8(b"counterparty-channel-0"), 9003);
// }
}
}
2 changes: 1 addition & 1 deletion move/move-ibc/sources/state_lens_lc.move
Original file line number Diff line number Diff line change
Expand Up @@ -65,4 +65,4 @@ module ibc::statelens_lc {
): bool {
false
}
}
}

0 comments on commit 65852d1

Please sign in to comment.