Lower all Assets / NFT deposits by 10x (#1332)

* lower all deposits by 10x

* undo rococo stuff

* Apply suggestions from code review

* update asset deposits

* align statemint deposit ratios

Co-authored-by: joepetrowski <joe@parity.io>
This commit is contained in:
Shawn Tabrizi
2022-06-14 13:13:11 -04:00
committed by GitHub
parent 5fc7d4be96
commit 11201950d2
7 changed files with 18 additions and 18 deletions
@@ -26,8 +26,8 @@ pub mod currency {
pub const MILLICENTS: Balance = constants::currency::MILLICENTS;
pub const fn deposit(items: u32, bytes: u32) -> Balance {
// map to 1/10 of what the kusama relay chain charges (v9020)
constants::currency::deposit(items, bytes) / 10
// map to 1/100 of what the kusama relay chain charges (v9020)
constants::currency::deposit(items, bytes) / 100
}
}