diff --git a/packages/cw0/src/balance.rs b/packages/cw0/src/balance.rs index da7f6de03..f37b849fc 100644 --- a/packages/cw0/src/balance.rs +++ b/packages/cw0/src/balance.rs @@ -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(()) }