forked from centrifuge/centrifuge-chain
-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Revert "Revert "Multi-runtime support (centrifuge#395)""
This reverts commit a1ba572.
- Loading branch information
Branan Riley
committed
Jun 25, 2021
1 parent
7adf8f6
commit 2d0bf8a
Showing
32 changed files
with
3,083 additions
and
3,165 deletions.
There are no files selected for viewing
Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.
Oops, something went wrong.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
File renamed without changes.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,12 @@ | ||
//! A set of constant values used in altair runtime | ||
/// Money matters. | ||
pub mod currency { | ||
use node_primitives::Balance; | ||
use runtime_common::*; | ||
|
||
pub const MICRO_AIR: Balance = MICRO_CFG; | ||
pub const MILLI_AIR: Balance = MILLI_CFG; | ||
pub const CENTI_AIR: Balance = CENTI_CFG; | ||
pub const AIR: Balance = CFG; | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Oops, something went wrong.