Skip to content

Commit

Permalink
Browse files Browse the repository at this point in the history
  • Loading branch information
Jinter410 committed Jun 19, 2023
2 parents 80f9220 + d108291 commit 2548004
Show file tree
Hide file tree
Showing 2 changed files with 10 additions and 2 deletions.
8 changes: 8 additions & 0 deletions contracts/NumberRunnerClub.sol
Original file line number Diff line number Diff line change
Expand Up @@ -631,6 +631,14 @@ contract NumberRunnerClub is INumberRunnerClub, ERC721URIStorage, VRFV2WrapperCo
function getIsStacked(uint256 _id) public view returns (bool) {
return isStacked[_id];
}

function getBurnedCount(address user) public view returns (uint256) {
return burnedCount[user];
}

function getBurnedCounterCount(address user) public view returns (uint256) {
return burnedCounterCount[user];
}

function getShareTypeAccumulator(uint i, uint j) public view returns (uint256) {
return shareTypeAccumulator[i][j];
Expand Down
4 changes: 2 additions & 2 deletions truffle-config.js
Original file line number Diff line number Diff line change
Expand Up @@ -46,7 +46,7 @@ module.exports = {
host: "127.0.0.1", // Localhost (default: none)
port: 8545, // Standard Ethereum port (default: none)
network_id: "*", // Any network (default: none)
gas: 50000000 // Change this value
gas: 500000000 // Change this value
},
//
// goerli: {
Expand All @@ -68,7 +68,7 @@ module.exports = {
settings: { // See the solidity docs for advice about optimization and evmVersion
optimizer: {
enabled: true,
runs: 20
runs: 50
},
evmVersion: "byzantium"
}
Expand Down

0 comments on commit 2548004

Please sign in to comment.