Skip to content

Commit

Permalink
BitcoindRegtestSetup: Remove unnecessary 'throws InterruptedException'
Browse files Browse the repository at this point in the history
  • Loading branch information
alvasw committed Sep 3, 2024
1 parent 89e0ecd commit 743dd3d
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -65,7 +65,7 @@ public List<String> mineOneBlock() throws InterruptedException {
return mineBlocks(1);
}

public List<String> mineBlocks(int numberOfBlocks) throws InterruptedException {
public List<String> mineBlocks(int numberOfBlocks) {
return remoteBitcoind.mineBlocks(numberOfBlocks);
}

Expand Down

0 comments on commit 743dd3d

Please sign in to comment.