Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Update Tuweni to 2.4.1 #5513

Merged
merged 17 commits into from
Jun 9, 2023
Prev Previous commit
Next Next commit
fix an issue with Bytes.repeat
Signed-off-by: Antoine Toulme <antoine@lunar-ocean.com>
  • Loading branch information
atoulme committed Jun 2, 2023
commit 534cfbd7f549f4b5f9072d54c7cd716abd502781
Original file line number Diff line number Diff line change
Expand Up @@ -30,7 +30,7 @@ class WithdrawalEncoderTest {
public static final String WITHDRAWAL_MAX_VALUE =
"0xf088ffffffffffffffff88ffffffffffffffff94ffffffffffffffffffffffffffffffffffffffff88ffffffffffffffff";
public static final Address MAX_ADDRESS =
Address.fromHexString(Bytes.repeat((byte) 0xff, 20).toHexString());
Address.fromHexString("ff".repeat(20));

@Test
void shouldEncodeWithdrawalForZeroCase() {
Expand Down