We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 2d2d81f commit 0173c49Copy full SHA for 0173c49
lazer/contracts/evm/src/PythLazer.sol
@@ -6,7 +6,7 @@ import "@openzeppelin/contracts-upgradeable/access/OwnableUpgradeable.sol";
6
7
contract PythLazer is OwnableUpgradeable, UUPSUpgradeable {
8
TrustedSignerInfo[2] public trustedSigners;
9
- uint256 public verification_fee = 1 wei;
+ uint256 public verification_fee;
10
11
struct TrustedSignerInfo {
12
address pubkey;
@@ -16,6 +16,8 @@ contract PythLazer is OwnableUpgradeable, UUPSUpgradeable {
16
function initialize(address _topAuthority) public initializer {
17
__Ownable_init(_topAuthority);
18
__UUPSUpgradeable_init();
19
+
20
+ verification_fee = 1 wei;
21
}
22
23
function _authorizeUpgrade(address) internal override onlyOwner {}
0 commit comments