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();