Skip to content
This repository was archived by the owner on May 6, 2025. It is now read-only.

Commit 15f13ea

Browse files
committed
Fix formatting
1 parent a202aa2 commit 15f13ea

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

MockPyth.sol

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -25,7 +25,7 @@ contract MockPyth is AbstractPyth {
2525
function updatePriceFeeds(bytes[] calldata updateData) public override payable {
2626
uint requiredFee = getUpdateFee(updateData.length);
2727
require(msg.value >= requiredFee, "Insufficient paid fee amount");
28-
28+
2929
if (msg.value > requiredFee) {
3030
(bool success, ) = payable(msg.sender).call{value: msg.value - requiredFee}("");
3131
require(success, "Failed to transfer additional amount.");

0 commit comments

Comments
 (0)