Skip to content

Commit

Permalink
Flip fee tokens in report decoding
Browse files Browse the repository at this point in the history
  • Loading branch information
austinborn committed Sep 12, 2023
1 parent 079f749 commit e1e95e3
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion contracts/src/v0.8/llo-feeds/dev/FeeManager.sol
Original file line number Diff line number Diff line change
Expand Up @@ -259,7 +259,7 @@ contract FeeManager is IFeeManager, ConfirmedOwner, TypeAndVersionInterface {
uint256 linkQuantity;
uint256 nativeQuantity;
uint256 expiresAt;
(, , , linkQuantity, nativeQuantity, expiresAt) = abi.decode(
(, , , nativeQuantity, linkQuantity, expiresAt) = abi.decode(
report,
(bytes32, uint32, uint32, uint192, uint192, uint32)
);
Expand Down

0 comments on commit e1e95e3

Please sign in to comment.