From bd4043170b35631304a9aa2937ef5eb988a124af Mon Sep 17 00:00:00 2001 From: alex Date: Fri, 20 Dec 2024 17:18:48 -0800 Subject: [PATCH] send versioned transaction --- wasm/solana-client/src/client.rs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/wasm/solana-client/src/client.rs b/wasm/solana-client/src/client.rs index c7d7009a..d89b1900 100644 --- a/wasm/solana-client/src/client.rs +++ b/wasm/solana-client/src/client.rs @@ -251,7 +251,7 @@ impl WasmClient { ) -> ClientResult { 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();