Lesson 1 - Deployed but not showing colours #1454
Answered
by
cromewar
cryptofruits
asked this question in
Q&A
-
Hello - I managed to deploy the contract but none of the script was in different colours. // SPDX-License-Identifier: MIT
pragma solidity ^0.8.0;
contract SimpleStorage {
//this will get intialized to 0!
uint256 public favoriteNumber;
function store(uint256 _favoriteNumber) public {
favoriteNumber = _favoriteNumber;
}
}
ALSO there was no STORE option after it was deployed - TY |
Beta Was this translation helpful? Give feedback.
Answered by
cromewar
May 2, 2022
Replies: 1 comment 3 replies
-
Hello @cryptofruits |
Beta Was this translation helpful? Give feedback.
3 replies
Answer selected by
cromewar
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Hello @cryptofruits
If you are deploying using remix, try deleting the cache of the browser and also trying with another one like firefox.
remember you have to compile the code each time with Ctrl + S on Remix, and the re deploy de contract with the changes made.