Skip to content

Commit

Permalink
Update packages/cw0/src/balance.rs
Browse files Browse the repository at this point in the history
  • Loading branch information
orkunkl committed Dec 2, 2021
1 parent c946887 commit b4e0c60
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion packages/cw0/src/balance.rs
Original file line number Diff line number Diff line change
Expand Up @@ -94,7 +94,7 @@ impl NativeBalance {
impl fmt::Display for NativeBalance {
fn fmt(&self, f: &mut fmt::Formatter) -> fmt::Result {
for c in &self.0 {
write!(f, "denom: {}, amount: {}", c.denom, c.amount)?
write!(f, "{}{}", c.denom, c.amount)?
}
Ok(())
}
Expand Down

0 comments on commit b4e0c60

Please sign in to comment.