Bump versions (#736)

* Fix up Kusama balance constants

* Bump versions

* Fix for the --dev option
This commit is contained in:
Gavin Wood
2020-01-07 19:30:06 +01:00
committed by GitHub
parent 263dc43da3
commit bd8db613ef
21 changed files with 201 additions and 198 deletions
+1 -1
View File
@@ -19,7 +19,7 @@ pub mod currency {
use primitives::Balance;
pub const DOTS: Balance = 1_000_000_000_000;
pub const DOLLARS: Balance = DOTS / 100;
pub const DOLLARS: Balance = DOTS;
pub const CENTS: Balance = DOLLARS / 100;
pub const MILLICENTS: Balance = CENTS / 1_000;
}