Skip to content

Commit

Permalink
Updated script for testing sync events
Browse files Browse the repository at this point in the history
  • Loading branch information
Shailu-s committed Feb 13, 2025
1 parent 304bfb9 commit f52c53b
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions contracts/script/TestSyncEvents.s.sol
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@
pragma solidity ^0.8.23;

import "forge-std/Script.sol";
import {Sybil} from "../src/mvp/Sybil.sol";
import {Sybil} from "../src/Sybil.sol";

contract TestSyncEvents is Script {
struct TxParams {
Expand Down Expand Up @@ -35,7 +35,7 @@ contract TestSyncEvents is Script {
}

function validCreateAccountDeposit() public pure returns (TxParams memory) {
return TxParams({fromIdx: 0, loadAmountF: 1, amountF: 0, toIdx: 0});
return TxParams({fromIdx: 0, loadAmountF: 2, amountF: 0, toIdx: 0});
}

function _float2Fix(uint40 floatVal) internal pure returns (uint256) {
Expand Down

0 comments on commit f52c53b

Please sign in to comment.