From 8418cd2313344ca4747b121078282eb5ee359e82 Mon Sep 17 00:00:00 2001 From: Intellygentle <57158297+intellygentle@users.noreply.github.com> Date: Mon, 22 Apr 2024 08:25:38 +0100 Subject: [PATCH] Update Minimal token Exercise.sol MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit Edited value... I'm on mobile editing on remix sucks🤧 --- 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;