diff --git a/core/src/constants.rs b/core/src/constants.rs index 4f41d84..640c88d 100644 --- a/core/src/constants.rs +++ b/core/src/constants.rs @@ -23,10 +23,10 @@ pub mod currency { pub const AVAIL: Balance = 1_000_000_000_000_000_000; /// Cents of AVAIL has 16 decimal positions (100 Cents = $1) - /// 1 DOLLARS = `10_000_000_000_000_000` + /// 1 Cents = `10_000_000_000_000_000` pub const CENTS: Balance = AVAIL / 100; - /// Millicent of AVAIL has 13 decimal positions( 100 mCents = 1 cent). + /// Millicent of AVAIL has 13 decimal positions( 1000 mCents = 1 cent). pub const MILLICENTS: Balance = CENTS / 1_000; /// `MILLI_AVAIL` has 15 decimal positions