Skip to content

Commit

Permalink
Critical fixes
Browse files Browse the repository at this point in the history
  • Loading branch information
BlobMaster41 committed Jan 20, 2025
1 parent 1aae0f7 commit 62d8994
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 3 deletions.
4 changes: 2 additions & 2 deletions package.json
Original file line number Diff line number Diff line change
Expand Up @@ -27,8 +27,8 @@
"type": "module",
"dependencies": {
"@assemblyscript/loader": "^0.27.31",
"@btc-vision/as-bignum": "^0.0.2",
"@btc-vision/btc-runtime": "^1.4.1",
"@btc-vision/as-bignum": "^0.0.3",
"@btc-vision/btc-runtime": "^1.4.3",
"@eslint/js": "^9.17.0",
"gulplog": "^2.2.0",
"ts-node": "^10.9.2",
Expand Down
2 changes: 1 addition & 1 deletion src/contracts/MyToken.ts
Original file line number Diff line number Diff line change
Expand Up @@ -30,7 +30,7 @@ export class MyToken extends DeployableOP_20 {
this.instantiate(new OP20InitParameters(maxSupply, decimals, name, symbol));

// Add your logic here. Eg, minting the initial supply:
this._mint(Blockchain.tx.origin, maxSupply);
//this._mint(Blockchain.tx.origin, maxSupply);
}

public override execute(method: Selector, calldata: Calldata): BytesWriter {
Expand Down

0 comments on commit 62d8994

Please sign in to comment.