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";
6
6
7
7
contract PythLazer is OwnableUpgradeable , UUPSUpgradeable {
8
8
TrustedSignerInfo[2 ] public trustedSigners;
9
- uint256 public verification_fee = 0.00001 ether ;
9
+ uint256 public verification_fee = 1 wei ;
10
10
11
11
struct TrustedSignerInfo {
12
12
address pubkey;
Original file line number Diff line number Diff line change @@ -51,11 +51,5 @@ contract PythLazerTest is Test {
51
51
vm.expectRevert ("Insufficient fee provided " );
52
52
pythLazer.verifyUpdate (update);
53
53
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);
60
54
}
61
55
}
You can’t perform that action at this time.
0 commit comments