Skip to content

Commit b5fbbf9

Browse files
committed
Fix format issue
1 parent 91f301c commit b5fbbf9

File tree

1 file changed

+1
-2
lines changed

1 file changed

+1
-2
lines changed

lazer/evm/src/ExampleReceiver.sol

Lines changed: 1 addition & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -16,12 +16,11 @@ contract ExampleReceiver {
1616
verification_fee = pythLazer.verification_fee();
1717
}
1818

19-
function updatePrice(bytes calldata update) payable public {
19+
function updatePrice(bytes calldata update) public payable {
2020
require(msg.value >= verification_fee, "Insufficient fee provided");
2121
(bytes memory payload,) = pythLazer.verifyUpdate{value: verification_fee}(update);
2222
if (msg.value > verification_fee) {
2323
payable(msg.sender).transfer(msg.value - verification_fee);
24-
function updatePrice(bytes calldata update) public payable {
2524
}
2625

2726
(uint64 _timestamp, PythLazerLib.Channel channel, uint8 feedsLen, uint16 pos) =

0 commit comments

Comments
 (0)