Skip to content

Commit

Permalink
Fix Burn print
Browse files Browse the repository at this point in the history
  • Loading branch information
TheQuantumPhysicist committed Feb 2, 2024
1 parent a3e500d commit 8c4d396
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion common/src/chain/transaction/printout.rs
Original file line number Diff line number Diff line change
Expand Up @@ -163,7 +163,7 @@ pub fn transaction_summary(tx: &Transaction, chain_config: &ChainConfig) -> Stri
fmt_timelock(timelock)
)
}
TxOutput::Burn(val) => fmt_val(val),
TxOutput::Burn(val) => format!("Burn({})", fmt_val(val)),
TxOutput::CreateStakePool(id, data) => {
format!(
"CreateStakePool(Id({}), {})",
Expand Down

0 comments on commit 8c4d396

Please sign in to comment.