Merge pull request #72 from OpenMindTeh/patch-1

fix: cli_trading example missing {:?} format for Vec<Signature>
This commit is contained in:
Wood
2026-01-08 20:48:19 +08:00
committed by GitHub
+1 -1
View File
@@ -1090,7 +1090,7 @@ async fn handle_sell_pumpswap(
match client.sell(sell_params).await { match client.sell(sell_params).await {
Ok((_, signature, _)) => { Ok((_, signature, _)) => {
println!(" ✅ Successfully sold tokens from PumpSwap!"); println!(" ✅ Successfully sold tokens from PumpSwap!");
println!(" ✅ Transaction Signature: {}", signature); println!(" ✅ Transaction Signature: {:?}", signature);
} }
Err(e) => { Err(e) => {
println!(" ❌ Failed to sell tokens from PumpSwap: {}", e); println!(" ❌ Failed to sell tokens from PumpSwap: {}", e);