Skip to content

Commit

Permalink
fix: use raw bool instead of HasPacketReceiptReturn
Browse files Browse the repository at this point in the history
  • Loading branch information
benluelo committed Apr 26, 2024
1 parent 9e7ff3e commit 84dd6cb
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions lib/chain-utils/src/ethereum.rs
Original file line number Diff line number Diff line change
Expand Up @@ -690,7 +690,7 @@ impl_eth_call_ext! {
GetChannelCall -> GetChannelReturn;
GetHashedPacketCommitmentCall -> GetHashedPacketCommitmentReturn;
GetHashedPacketAcknowledgementCommitmentCall -> GetHashedPacketAcknowledgementCommitmentReturn;
HasPacketReceiptCall -> HasPacketReceiptReturn;
HasPacketReceiptCall -> bool;
NextConnectionSequenceCall -> u64;
NextClientSequenceCall -> u64;
}
Expand Down Expand Up @@ -876,7 +876,7 @@ where
}

fn decode_ibc_state(encoded: <Self::EthCall as EthCallExt>::Return) -> Self::Value {
encoded.0
encoded
}
}

Expand Down

0 comments on commit 84dd6cb

Please sign in to comment.