Change Amount Debug impl to BTC with 8 decimals
This commit is contained in:
parent
9cff794a09
commit
6186ee6269
|
@ -463,7 +463,7 @@ impl Ord for Amount {
|
||||||
|
|
||||||
impl fmt::Debug for Amount {
|
impl fmt::Debug for Amount {
|
||||||
fn fmt(&self, f: &mut fmt::Formatter) -> fmt::Result {
|
fn fmt(&self, f: &mut fmt::Formatter) -> fmt::Result {
|
||||||
write!(f, "Amount({} satoshi)", self.as_sat())
|
write!(f, "Amount({:.8} BTC)", self.as_btc())
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
|
@ -807,7 +807,7 @@ impl Ord for SignedAmount {
|
||||||
|
|
||||||
impl fmt::Debug for SignedAmount {
|
impl fmt::Debug for SignedAmount {
|
||||||
fn fmt(&self, f: &mut fmt::Formatter) -> fmt::Result {
|
fn fmt(&self, f: &mut fmt::Formatter) -> fmt::Result {
|
||||||
write!(f, "SignedAmount({} satoshi)", self.as_sat())
|
write!(f, "SignedAmount({:.8} BTC)", self.as_btc())
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
Loading…
Reference in New Issue