File tree Expand file tree Collapse file tree 2 files changed +2
-2
lines changed Expand file tree Collapse file tree 2 files changed +2
-2
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.01 ether ;
9+ uint256 public verification_fee = 0.00001 ether ;
1010
1111 struct TrustedSignerInfo {
1212 address pubkey;
Original file line number Diff line number Diff line change @@ -53,7 +53,7 @@ contract PythLazerTest is Test {
5353
5454 // Bob does not attach enough fees
5555 vm.expectRevert ("Insufficient fee provided " );
56- pythLazer.verifyUpdate { value: 0.00001 ether }(update);
56+ pythLazer.verifyUpdate { value: 1 wei }(update);
5757 assertEq (bob.balance, 1 ether);
5858 }
5959}
You can’t perform that action at this time.
0 commit comments