From e11888e6988640eb868243fdbf4bfa67809beed5 Mon Sep 17 00:00:00 2001 From: Intellygentle <57158297+intellygentle@users.noreply.github.com> Date: Mon, 22 Apr 2024 08:26:28 +0100 Subject: [PATCH] Update Minimal token Exercise.sol --- Minimal token Exercise.sol | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Minimal token Exercise.sol b/Minimal token Exercise.sol index 2d0e075..32d6ff2 100644 --- a/Minimal token Exercise.sol +++ b/Minimal token Exercise.sol @@ -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 = "1234567"; // A private string variable // Mapping to track token balances of addresses mapping(address => uint256) public balances;