Skip to content

Commit

Permalink
return tx hash regardless of outcall response
Browse files Browse the repository at this point in the history
  • Loading branch information
darroze-ar committed Oct 8, 2024
1 parent 3d919dc commit 70d8b44
Showing 1 changed file with 2 additions and 1 deletion.
3 changes: 2 additions & 1 deletion src/contract/mod.rs
Original file line number Diff line number Diff line change
Expand Up @@ -453,7 +453,8 @@ mod contract_signing {
.await?;
self.eth
.send_raw_transaction(signed.raw_transaction, options.call_options.unwrap_or_default())
.await
.await?;
Ok(signed.transaction_hash)
}

// Submit contract call transaction to the transaction pool and wait for the transaction to be included in a block.
Expand Down

0 comments on commit 70d8b44

Please sign in to comment.