mirror of
https://github.com/Instadapp/dsa-governance.git
synced 2024-07-29 22:27:52 +00:00
Moved decimals to TokenDelegatorStorage
This commit is contained in:
parent
ec0311e098
commit
c072d9767c
|
@ -6,9 +6,6 @@ import { SafeMath } from "./SafeMath.sol";
|
|||
|
||||
// TODO @thrilok209 @KaymasJain - Rename it
|
||||
contract TokenDelegate is TokenDelegateStorageV1, TokenEvents {
|
||||
/// @notice EIP-20 token decimals for this token
|
||||
uint8 public constant decimals = 18;
|
||||
|
||||
/// @notice Minimum time between mints
|
||||
uint32 public constant minimumTimeBetweenMints = 1 days * 7; // TODO @thrilok209 @KaymasJain - Replace it
|
||||
|
||||
|
|
|
@ -52,6 +52,10 @@ contract TokenDelegatorStorage {
|
|||
|
||||
/// @notice Total number of tokens in circulation
|
||||
uint public totalSupply = 10000000e18; // TODO - Replace it
|
||||
|
||||
/// @notice EIP-20 token decimals for this token
|
||||
uint8 public constant decimals = 18;
|
||||
|
||||
}
|
||||
|
||||
/**
|
||||
|
|
Loading…
Reference in New Issue
Block a user