Skip to content

Commit 2d2d81f

Browse files
Darun Seethammagaridarunrs
authored andcommitted
Change fee to 1 wei
1 parent 9342d23 commit 2d2d81f

File tree

2 files changed

+1
-7
lines changed

2 files changed

+1
-7
lines changed

lazer/contracts/evm/src/PythLazer.sol

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,7 @@ import "@openzeppelin/contracts-upgradeable/access/OwnableUpgradeable.sol";
66

77
contract 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;

lazer/contracts/evm/test/PythLazer.t.sol

Lines changed: 0 additions & 6 deletions
Original file line numberDiff line numberDiff 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
}

0 commit comments

Comments
 (0)