Skip to content

Commit

Permalink
fix: don't validate when ABI decoding (#2041)
Browse files Browse the repository at this point in the history
  • Loading branch information
DaniPopes authored Feb 11, 2025
1 parent d8c2bfc commit 5708d79
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion crates/contract/src/eth_call.rs
Original file line number Diff line number Diff line change
Expand Up @@ -159,7 +159,7 @@ where
let pin = std::pin::pin!(&mut this.inner);
match pin.poll(cx) {
std::task::Poll::Ready(Ok(data)) => {
std::task::Poll::Ready(this.decoder.abi_decode_output(data, true))
std::task::Poll::Ready(this.decoder.abi_decode_output(data, false))
}
std::task::Poll::Ready(Err(e)) => std::task::Poll::Ready(Err(e.into())),
std::task::Poll::Pending => std::task::Poll::Pending,
Expand Down

0 comments on commit 5708d79

Please sign in to comment.