From cedf145625524aff8895b48e07065fabb98415b8 Mon Sep 17 00:00:00 2001 From: Xiliang Chen Date: Wed, 23 Feb 2022 17:39:13 +1300 Subject: [PATCH] Update runtime/karura/src/lib.rs --- runtime/karura/src/lib.rs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/runtime/karura/src/lib.rs b/runtime/karura/src/lib.rs index 93a853c5a6..ddc5563c0a 100644 --- a/runtime/karura/src/lib.rs +++ b/runtime/karura/src/lib.rs @@ -1371,7 +1371,7 @@ pub struct StorageDepositPerByte; impl> frame_support::traits::Get for StorageDepositPerByte { fn get() -> I { // NOTE: KAR decimals is 12, convert to 18. - // 10 * millicent(KCA) * 10^6 + // 10 * millicent(KAR) * 10^6 I::from(100_000_000_000_000) } }