Skip to content

Commit d9d9768

Browse files
committed
Remote console log used for debugging
1 parent d2e6096 commit d9d9768

File tree

2 files changed

+0
-22
lines changed

2 files changed

+0
-22
lines changed

src/input/types/MultichainCompactOrderType.sol

Lines changed: 0 additions & 9 deletions
Original file line numberDiff line numberDiff line change
@@ -105,15 +105,6 @@ library MultichainCompactOrderType {
105105
witnessHash(order)
106106
)
107107
);
108-
console.logBytes(
109-
abi.encode(
110-
ELEMENTS_COMPACT_TYPEHASH_WITH_WITNESS,
111-
address(this),
112-
block.chainid,
113-
inputsToLocksHash(order.inputs),
114-
witnessHash(order)
115-
)
116-
);
117108
// Insert the element hash into the array of the other provided element.
118109
bytes32 hashOfElements = insertAndHash(elementHash, order.chainIndex, order.additionalChains);
119110

test/input/compact/InputSettlerMultichainCompact.base.t.sol

Lines changed: 0 additions & 13 deletions
Original file line numberDiff line numberDiff line change
@@ -188,19 +188,6 @@ contract InputSettlerMultichainCompactTestBase is Test {
188188
Element memory element,
189189
bytes32 witness
190190
) internal pure returns (bytes32) {
191-
console.logBytes(
192-
abi.encode(
193-
keccak256(
194-
bytes(
195-
"Element(address arbiter,uint256 chainId,Lock[] commitments,Mandate mandate)Lock(bytes12 lockTag,address token,uint256 amount)Mandate(uint32 fillDeadline,address inputOracle,MandateOutput[] outputs)MandateOutput(bytes32 oracle,bytes32 settler,uint256 chainId,bytes32 token,uint256 amount,bytes32 recipient,bytes callbackData,bytes context)"
196-
)
197-
),
198-
element.arbiter,
199-
element.chainId,
200-
getLocksHash(element.commitments),
201-
witness
202-
)
203-
);
204191
return keccak256(
205192
abi.encode(
206193
keccak256(

0 commit comments

Comments
 (0)