diff --git a/NBitcoin/Scripting/AddressDescriptor.cs b/NBitcoin/Scripting/AddressDescriptor.cs new file mode 100644 index 0000000000..4449c74115 --- /dev/null +++ b/NBitcoin/Scripting/AddressDescriptor.cs @@ -0,0 +1,34 @@ +using System.Collections.Generic; + +namespace NBitcoin.Scripting +{ + /** A parsed addr(A) descriptor. */ + public class AddressDescriptor : DescriptorImpl + { + private IDestination m_destination; + + protected string ToStringExtra() { return EncodeDestination(m_destination); } + protected List