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 65852d1 commit c8b2495
Show file tree
Hide file tree
Showing 2 changed files with 5 additions and 9 deletions.
8 changes: 2 additions & 6 deletions move/move-ibc/sources/ibc.move
Original file line number Diff line number Diff line change
Expand Up @@ -557,9 +557,7 @@ module ibc::ibc {
);

if (light_client::check_for_misbehaviour(client_type, client_id, client_message)) {
event::emit(
SubmitMisbehaviour { client_id, client_type: client_type }
);
event::emit(SubmitMisbehaviour { client_id, client_type: client_type });
return
};

Expand Down Expand Up @@ -620,9 +618,7 @@ module ibc::ibc {

light_client::report_misbehaviour(client_type, client_id, misbehaviour);

event::emit(
SubmitMisbehaviour { client_id, client_type: client_type }
);
event::emit(SubmitMisbehaviour { client_id, client_type: client_type });
}

/// Execute the init phase of the channel handshake. `T` is the witness type of the target module that is
Expand Down
6 changes: 3 additions & 3 deletions move/move-ibc/sources/state_lens_lc.move
Original file line number Diff line number Diff line change
Expand Up @@ -22,8 +22,7 @@ module ibc::statelens_lc {

public fun report_misbehaviour(
_client_id: u32, _misbehaviour: vector<u8>
) {
}
) {}

public fun verify_membership(
_client_id: u32,
Expand Down Expand Up @@ -65,4 +64,5 @@ module ibc::statelens_lc {
): bool {
false
}
}
}

0 comments on commit c8b2495

Please sign in to comment.