Skip to content

Commit 8da39a6

Browse files
authored
test: Fix consumer base test helper (#7)
1 parent bae6f34 commit 8da39a6

1 file changed

Lines changed: 4 additions & 1 deletion

File tree

test/ConsumerBaseTest.sol

Lines changed: 4 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -84,7 +84,10 @@ abstract contract ConsumerBaseTest is Test {
8484
"\x19Chronicle Signed Message:\n32",
8585
keccak256(
8686
abi.encodePacked(
87-
scheme, __wat, uPokeData.payload, uPokeData.proofURI
87+
scheme,
88+
__wat,
89+
keccak256(abi.encodePacked(uPokeData.payload)),
90+
keccak256(abi.encodePacked(uPokeData.proofURI))
8891
)
8992
)
9093
)

0 commit comments

Comments
 (0)