mirror of
https://github.com/bitcoinj/bitcoinj.git
synced 2025-02-24 14:50:57 +01:00
Fix flake in WalletTest. Resolves #991
This commit is contained in:
parent
e3bba1c3cb
commit
2b8fa07ae8
1 changed files with 1 additions and 1 deletions
|
@ -2893,7 +2893,7 @@ public class WalletTest extends TestWithWallet {
|
|||
assertTrue("Only one of the signatures should be missing/dummy", firstSigIsMissing ^ secondSigIsMissing);
|
||||
int localSigIndex = firstSigIsMissing ? 2 : 1;
|
||||
int length = input.getScriptSig().getChunks().get(localSigIndex).data.length;
|
||||
assertTrue("Local sig should be present: " + length, length > 70);
|
||||
assertTrue("Local sig should be present: " + length, length >= 70);
|
||||
}
|
||||
|
||||
|
||||
|
|
Loading…
Add table
Reference in a new issue