From 883bc0513f40c64e89b8c282b8237572d7e95405 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Jose=CC=81=20Molina?= Date: Thu, 7 Dec 2023 15:59:25 +0100 Subject: [PATCH] fix: typo --- runtime/trappist/src/constants.rs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/runtime/trappist/src/constants.rs b/runtime/trappist/src/constants.rs index 47283981..499ded18 100644 --- a/runtime/trappist/src/constants.rs +++ b/runtime/trappist/src/constants.rs @@ -28,7 +28,7 @@ pub mod currency { pub const MILLICENTS: Balance = constants::currency::MILLICENTS; pub const fn deposit(items: u32, bytes: u32) -> Balance { - // map to 1/100 of what the kusama relay chain charges (v9020) + // map to 1/100 of what the rococo relay chain charges (v9020) constants::currency::deposit(items, bytes) / 100 } }