Skip to content
Closed
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
5 changes: 0 additions & 5 deletions NBitcoin/Scripting/OutputDescriptorParser.cs
Original file line number Diff line number Diff line change
Expand Up @@ -281,11 +281,6 @@ private static bool TryParseOD(string str, Network network, out string? whyFailu
return false;
}
result = res.Value;
if (result is OutputDescriptor.Multi multi && multi.PkProviders.Count > 3)
{
whyFailure = "You can not have more than 3 pubkeys in top level multisig.";
return false;
}
return true;
}
internal static OutputDescriptor ParseOD(string str, Network network, bool requireCheckSum = false, ISigningRepository? repo = null)
Expand Down