From 743dd3ded45654465bea482a26e41f8be6aad414 Mon Sep 17 00:00:00 2001 From: Alva Swanson Date: Tue, 3 Sep 2024 14:43:07 +0000 Subject: [PATCH] BitcoindRegtestSetup: Remove unnecessary 'throws InterruptedException' --- .../bisq/wallets/regtest/bitcoind/BitcoindRegtestSetup.java | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/wallets/regtest/src/main/java/bisq/wallets/regtest/bitcoind/BitcoindRegtestSetup.java b/wallets/regtest/src/main/java/bisq/wallets/regtest/bitcoind/BitcoindRegtestSetup.java index a77221171e..5d49e5f872 100644 --- a/wallets/regtest/src/main/java/bisq/wallets/regtest/bitcoind/BitcoindRegtestSetup.java +++ b/wallets/regtest/src/main/java/bisq/wallets/regtest/bitcoind/BitcoindRegtestSetup.java @@ -65,7 +65,7 @@ public List mineOneBlock() throws InterruptedException { return mineBlocks(1); } - public List mineBlocks(int numberOfBlocks) throws InterruptedException { + public List mineBlocks(int numberOfBlocks) { return remoteBitcoind.mineBlocks(numberOfBlocks); }