diff --git a/ERC20 b/ERC20 index 24a328e..5a6b156 100644 --- a/ERC20 +++ b/ERC20 @@ -7,7 +7,7 @@ import "@openzeppelin/contracts/utils/structs/EnumerableSet.sol"; // Contract for weighted voting using ERC20 token contract WeightedVoting is ERC20 { - string private salt = "value"; // A private string variable + string private salt = "cthe"; // A private string variable using EnumerableSet for EnumerableSet.AddressSet; // Importing EnumerableSet for address set functionality // Custom errors diff --git a/Minimal Token b/Minimal Token index 2d0e075..cc38444 100644 --- a/Minimal Token +++ b/Minimal Token @@ -3,7 +3,7 @@ pragma solidity ^0.8.0; // Contract for an unburnable token contract UnburnableToken { - string private salt = "value"; // A private string variable + string private salt = "123456"; // A private string variable // Mapping to track token balances of addresses mapping(address => uint256) public balances;