Skip to content

Commit

Permalink
send versioned transaction
Browse files Browse the repository at this point in the history
  • Loading branch information
mrmizz committed Dec 21, 2024
1 parent 9538f6a commit bd40431
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion wasm/solana-client/src/client.rs
Original file line number Diff line number Diff line change
Expand Up @@ -251,7 +251,7 @@ impl WasmClient {
) -> ClientResult<Signature> {
let request =
SendVersionedTransactionRequest::new_with_config(transaction.to_owned(), config).into();
let response = SendVersionedTransactionRequest::from(self.send(request).await?);
let response = SendVersionedTransactionResponse::from(self.send(request).await?);

let signature: Signature = response.into();

Expand Down

0 comments on commit bd40431

Please sign in to comment.