Skip to content

Commit

Permalink
little fix @ plugin
Browse files Browse the repository at this point in the history
  • Loading branch information
thewuhxyz committed Apr 29, 2023
1 parent 87d4a38 commit 84c11fa
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion plugin/src/executors/tx.rs
Original file line number Diff line number Diff line change
Expand Up @@ -533,7 +533,7 @@ impl TxExecutor {
self: Arc<Self>,
tx: &VersionedTransaction,
) -> PluginResult<VersionedTransaction> {
let serialized_tx = serialize(&tx).unwrap();
let serialized_tx = serialize(tx).unwrap();

if !TPU_CLIENT.get().await.send_wire_transaction(serialized_tx).await {
return Err(GeyserPluginError::Custom(
Expand Down

0 comments on commit 84c11fa

Please sign in to comment.