Skip to content

Commit 51cdc00

Browse files
Darun Seethammagaridarunrs
authored andcommitted
Adjust values
1 parent 7f0faa6 commit 51cdc00

File tree

2 files changed

+2
-2
lines changed

2 files changed

+2
-2
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.01 ether;
9+
uint256 public verification_fee = 0.00001 ether;
1010

1111
struct TrustedSignerInfo {
1212
address pubkey;

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

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff 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
}

0 commit comments

Comments
 (0)