Skip to content

Commit

Permalink
fix: typo
Browse files Browse the repository at this point in the history
  • Loading branch information
sirily11 committed Oct 25, 2022
1 parent 0b635c0 commit 73f62af
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion apps/codeblock/sampleCode/solidity/02-ERC20.sol
Original file line number Diff line number Diff line change
Expand Up @@ -9,7 +9,7 @@ contract ERC20FixedSupply is ERC20 {
//@codeblock
string constant contractSymbol = "FIX";
//@codeblock
int constant supply = 1000;
uint256 constant supply = 1000;

constructor() ERC20(contractName, contractSymbol) {
_mint(msg.sender, supply);
Expand Down

2 comments on commit 73f62af

@vercel
Copy link

@vercel vercel bot commented on 73f62af Oct 25, 2022

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

@vercel
Copy link

@vercel vercel bot commented on 73f62af Oct 25, 2022

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Successfully deployed to the following URLs:

codeblock – ./apps/codeblock

codeblock-git-main-etherdata-blockchain.vercel.app
codeblock-etherdata-blockchain.vercel.app
codeblock.vercel.app

Please sign in to comment.