Skip to content

Commit

Permalink
Fix lint
Browse files Browse the repository at this point in the history
  • Loading branch information
Jouzo committed Sep 12, 2023
1 parent 8ccc868 commit 9e7996c
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions lib/ain-evm/src/executor.rs
Original file line number Diff line number Diff line change
Expand Up @@ -261,7 +261,7 @@ impl<'backend> AinExecutor<'backend> {
}

let (tx_response, receipt) = self.exec(&signed_tx, U256::zero());
if (!tx_response.exit_reason.is_succeed()) {
if !tx_response.exit_reason.is_succeed() {
return Err(format_err!(
"[apply_queue_tx] Transfer domain failed VM execution {:?}",
tx_response.exit_reason
Expand Down Expand Up @@ -316,7 +316,7 @@ impl<'backend> AinExecutor<'backend> {
}

let (tx_response, receipt) = self.exec(&signed_tx, U256::zero());
if (!tx_response.exit_reason.is_succeed()) {
if !tx_response.exit_reason.is_succeed() {
return Err(format_err!(
"[apply_queue_tx] DST20 bridge failed VM execution {:?}",
tx_response.exit_reason
Expand Down

0 comments on commit 9e7996c

Please sign in to comment.