We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 129a912 commit 86e5a24Copy full SHA for 86e5a24
test/LCPClientTest.t.sol
@@ -135,6 +135,7 @@ contract LCPClientTest is BasicTest {
135
(bool success, bytes memory ret) = address(lc).staticcall(
136
abi.encodeWithSelector(LCPClientBase.updateClient.selector, clientId, message)
137
);
138
+ require(success, "failed to update duplicated client");
139
heights = abi.decode(ret, (Height.Data[]));
140
require(heights.length == 0, "heights length must be 0");
141
}
0 commit comments