Copy constructors for block, block header and hash classes
[NovacoinLibrary.git] / Novacoin / Hash160.cs
index 7d59f5c..5b23d60 100644 (file)
@@ -25,6 +25,7 @@ namespace Novacoin
         public Hash160() : base() { }
         public Hash160(byte[] bytes) : base(bytes) { }
         public Hash160(IEnumerable<byte> bytes) : base(bytes) { }
+        public Hash160(Hash160 h) : base(h) { }
 
         public static Hash160 Compute160(IEnumerable<byte> inputBytes)
         {