File tree Expand file tree Collapse file tree 2 files changed +1
-7
lines changed Expand file tree Collapse file tree 2 files changed +1
-7
lines changed Original file line number Diff line number Diff line change @@ -6,7 +6,7 @@ import "@openzeppelin/contracts-upgradeable/access/OwnableUpgradeable.sol";
66
77contract PythLazer is OwnableUpgradeable , UUPSUpgradeable {
88 TrustedSignerInfo[2 ] public trustedSigners;
9- uint256 public verification_fee = 0.00001 ether ;
9+ uint256 public verification_fee = 1 wei ;
1010
1111 struct TrustedSignerInfo {
1212 address pubkey;
Original file line number Diff line number Diff line change @@ -51,11 +51,5 @@ contract PythLazerTest is Test {
5151 vm.expectRevert ("Insufficient fee provided " );
5252 pythLazer.verifyUpdate (update);
5353 assertEq (bob.balance, 1 ether);
54-
55- // Bob does not attach enough fees
56- vm.prank (bob);
57- vm.expectRevert ("Insufficient fee provided " );
58- pythLazer.verifyUpdate {value: 1 wei }(update);
59- assertEq (bob.balance, 1 ether);
6054 }
6155}
You can’t perform that action at this time.
0 commit comments