From 81ddc37d736857e053bf02d871e399e1bf8ab3a8 Mon Sep 17 00:00:00 2001 From: Emmanuel Date: Mon, 13 Feb 2023 09:47:16 -0300 Subject: [PATCH] fix: set Granularity frc42 value correctly --- script/src/main.rs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/script/src/main.rs b/script/src/main.rs index 2d493b2b..1ff0e906 100644 --- a/script/src/main.rs +++ b/script/src/main.rs @@ -104,7 +104,7 @@ fn main() { let DestroyExported = frc42_dispatch::method_hash!("Destroy"); let NameExported = frc42_dispatch::method_hash!("Name"); let SymbolExported = frc42_dispatch::method_hash!("Symbol"); - let GranularityExported = frc42_dispatch::method_hash!("GranularityExported"); + let GranularityExported = frc42_dispatch::method_hash!("Granularity"); let TotalSupplyExported = frc42_dispatch::method_hash!("TotalSupply"); let BalanceExported = frc42_dispatch::method_hash!("Balance"); let TransferExported = frc42_dispatch::method_hash!("Transfer");