Skip to content

Commit

Permalink
継承元のmintPrice, mintLimitは使用しない
Browse files Browse the repository at this point in the history
  • Loading branch information
EibaKatsu committed Oct 26, 2023
1 parent 55e49ad commit 1f91eed
Showing 1 changed file with 2 additions and 3 deletions.
5 changes: 2 additions & 3 deletions contract/contracts/LocalNounsToken.sol
Original file line number Diff line number Diff line change
Expand Up @@ -27,9 +27,8 @@ contract LocalNounsToken is ProviderTokenA2, ILocalNounsToken {
) ProviderTokenA2(_assetProvider, 'Local Nouns', 'Local Nouns') {
description = 'Local Nouns Token.';
assetProvider2 = _assetProvider;
// mintPrice = 1e13; // 0.001
mintPrice = 0;
mintLimit = 5000;
// mintPrice = 1e13; // 0.001 ※ mintPriceは Minterコントラクトで制御するため使用しない
// mintLimit = 5000; ※ mintLimitは Minterコントラクトで制御するため使用しない
minter = _minter;
administratorsAddress = msg.sender;
}
Expand Down

0 comments on commit 1f91eed

Please sign in to comment.