Skip to content

Commit

Permalink
Print the position id when generating a position
Browse files Browse the repository at this point in the history
Resolves issue penumbra-zone#4792
  • Loading branch information
zmanian committed Aug 9, 2024
1 parent c4db70a commit a0b6109
Showing 1 changed file with 2 additions and 0 deletions.
2 changes: 2 additions & 0 deletions crates/bin/pcli/src/command/tx.rs
Original file line number Diff line number Diff line change
Expand Up @@ -957,6 +957,8 @@ impl TxCmd {
let position = order.as_position(&asset_cache, OsRng)?;
tracing::info!(?position);

println!("Position id:{}", position.id().to_string());

let plan = Planner::new(OsRng)
.set_gas_prices(gas_prices)
.set_fee_tier(order.fee_tier().into())
Expand Down

0 comments on commit a0b6109

Please sign in to comment.