Skip to content

Commit

Permalink
fix: script run function to public
Browse files Browse the repository at this point in the history
  • Loading branch information
gpylypchuk committed Feb 6, 2024
1 parent 2651eb4 commit a40bb50
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion script/Deploy001_NftReward.s.sol
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,7 @@ import {NftReward} from "../src/NftReward.sol";
import {ERC1967Proxy} from "@openzeppelin/contracts/proxy/ERC1967/ERC1967Proxy.sol";

contract Deploy001_NftReward is Script {
function run() external returns(address) {
function run() public returns(address) {
// deploy NftReward contract
address proxy = deployNftReward();
return proxy;
Expand Down

0 comments on commit a40bb50

Please sign in to comment.