From a40807cbea68415d41415e66ccbace99ff03979e Mon Sep 17 00:00:00 2001 From: William Cook Date: Mon, 11 Apr 2022 09:24:43 -0600 Subject: [PATCH] updated decimals to 9 --- contracts/wfio.sol | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/contracts/wfio.sol b/contracts/wfio.sol index 5b7990b..a5683f5 100644 --- a/contracts/wfio.sol +++ b/contracts/wfio.sol @@ -244,6 +244,6 @@ contract WFIO is ERC20Burnable, ERC20Pausable { } function decimals() public view virtual override returns (uint8) { - return 0; + return 9; } }