mirror of
https://github.com/bitcoinj/bitcoinj.git
synced 2025-02-24 14:50:57 +01:00
ScriptPattern: Correct and clarify the JavaDoc on isSentToMultisig()
This commit is contained in:
parent
30e21ea3a0
commit
b51922dde7
1 changed files with 2 additions and 2 deletions
|
@ -197,8 +197,8 @@ public class ScriptPattern {
|
||||||
}
|
}
|
||||||
|
|
||||||
/**
|
/**
|
||||||
* Returns whether this script matches the format used for multisig outputs:
|
* Returns whether this script matches the format used for m-of-n multisig outputs:
|
||||||
* {@code [n] [keys...] [m] CHECKMULTISIG}
|
* {@code [m] [keys...] [n] CHECKMULTISIG}
|
||||||
*/
|
*/
|
||||||
public static boolean isSentToMultisig(Script script) {
|
public static boolean isSentToMultisig(Script script) {
|
||||||
List<ScriptChunk> chunks = script.chunks;
|
List<ScriptChunk> chunks = script.chunks;
|
||||||
|
|
Loading…
Add table
Reference in a new issue