From 0469acbeff00ea25bb04f3ecad40ceee5d098dcf Mon Sep 17 00:00:00 2001 From: adelarja Date: Tue, 18 Jul 2023 15:11:31 -0300 Subject: [PATCH] Changed currencies names. --- node/src/chain_spec.rs | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/node/src/chain_spec.rs b/node/src/chain_spec.rs index ecac1af1f..8398f84d9 100644 --- a/node/src/chain_spec.rs +++ b/node/src/chain_spec.rs @@ -925,10 +925,10 @@ fn foucoco_genesis( authorized_accounts: authorized_oracles, supported_currencies: vec![ foucoco_runtime::AssetId::new(b"Kusama".to_vec(), b"KSM".to_vec()), - foucoco_runtime::AssetId::new(b"BRL".to_vec(), b"BRL".to_vec()), - foucoco_runtime::AssetId::new(b"USD".to_vec(), b"USD".to_vec()), - foucoco_runtime::AssetId::new(b"TZS".to_vec(), b"TZS".to_vec()), - foucoco_runtime::AssetId::new(b"MXN".to_vec(), b"MXN".to_vec()), + foucoco_runtime::AssetId::new(b"Brazilian Real".to_vec(), b"BRL".to_vec()), + foucoco_runtime::AssetId::new(b"United States Dollar".to_vec(), b"USD".to_vec()), + foucoco_runtime::AssetId::new(b"Tanzanian Shilling".to_vec(), b"TZS".to_vec()), + foucoco_runtime::AssetId::new(b"Mexican Peso".to_vec(), b"MXN".to_vec()), ], batching_api: b"https://dia-00.pendulumchain.tech/currencies".to_vec(), coin_infos_map: vec![],