Merge pull request #72 from OpenMindTeh/patch-1
fix: cli_trading example missing {:?} format for Vec<Signature>
This commit is contained in:
@@ -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);
|
||||||
|
|||||||
Reference in New Issue
Block a user