Skip to content

Commit

Permalink
refactor: test
Browse files Browse the repository at this point in the history
  • Loading branch information
franciscotobar committed Apr 11, 2024
1 parent b51c39a commit a368eb3
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions contracts/verifier/BoltzDeployVerifier.sol
Original file line number Diff line number Diff line change
Expand Up @@ -98,16 +98,16 @@ contract BoltzDeployVerifier is
abi.encodePacked(claim.preimage)
);

bytes32 hashValues = swap.hashValues(
bytes32 hashValue = swap.hashValues(
preimageHash,
claim.amount,
contractAddr,
claim.refundAddress,
claim.refundAddress,
claim.timelock
);

require(
swap.swaps(hashValues) == true,
swap.swaps(hashValue) == true,
"Verifier: swap has no RBTC locked in the contract"
);
} else {
Expand Down

0 comments on commit a368eb3

Please sign in to comment.