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";
6
6
7
7
contract PythLazer is OwnableUpgradeable , UUPSUpgradeable {
8
8
TrustedSignerInfo[2 ] public trustedSigners;
9
- uint256 public verification_fee = 0.01 ether ;
9
+ uint256 public verification_fee = 0.00001 ether ;
10
10
11
11
struct TrustedSignerInfo {
12
12
address pubkey;
Original file line number Diff line number Diff line change @@ -53,7 +53,7 @@ contract PythLazerTest is Test {
53
53
54
54
// Bob does not attach enough fees
55
55
vm.expectRevert ("Insufficient fee provided " );
56
- pythLazer.verifyUpdate { value: 0.00001 ether }(update);
56
+ pythLazer.verifyUpdate { value: 1 wei }(update);
57
57
assertEq (bob.balance, 1 ether);
58
58
}
59
59
}
You can’t perform that action at this time.
0 commit comments