Skip to content

Commit

Permalink
fix examples
Browse files Browse the repository at this point in the history
  • Loading branch information
ezynda3 committed Jan 6, 2025
1 parent f8901d0 commit c3b372d
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion test/solidity/Facets/AcrossFacetPackedV3.t.sol
Original file line number Diff line number Diff line change
Expand Up @@ -130,7 +130,7 @@ contract AcrossFacetPackedV3Test is TestBase {
refundAddress: USER_SENDER, // Set to match the depositor
receivingAssetId: ADDRESS_USDC_POL,
outputAmount: (defaultUSDCAmount * 9) / 10,
outputAmountPercent: 10000, // 10000 = 100.00%
outputAmountPercent: uint64(1000000000000000000), // 100.00%
exclusiveRelayer: address(0),
quoteTimestamp: quoteTimestamp,
fillDeadline: uint32(quoteTimestamp + 1000),
Expand Down
2 changes: 1 addition & 1 deletion test/solidity/Facets/CalldataVerificationFacet.t.sol
Original file line number Diff line number Diff line change
Expand Up @@ -688,7 +688,7 @@ contract CalldataVerificationFacetTest is TestBase {
refundAddress: USER_REFUND,
receivingAssetId: ADDRESS_USDC,
outputAmount: (defaultUSDCAmount * 9) / 10,
outputAmountPercent: 10000, // 10000 = 100.00%
outputAmountPercent: uint64(1000000000000000000), // 10000 = 100.00%
exclusiveRelayer: address(0),
quoteTimestamp: uint32(block.timestamp),
fillDeadline: uint32(uint32(block.timestamp) + 1000),
Expand Down

0 comments on commit c3b372d

Please sign in to comment.