diff --git a/src/Sia.Skynet/Sia.Skynet.csproj b/src/Sia.Skynet/Sia.Skynet.csproj
index 901338c..2d8c1c0 100644
--- a/src/Sia.Skynet/Sia.Skynet.csproj
+++ b/src/Sia.Skynet/Sia.Skynet.csproj
@@ -2,12 +2,12 @@
netstandard2.0
- 8.0
+ latest
true
- 1.0.3
+ 1.0.4
Adam Shirt
Library for integrating Sia Skynet into your applications
MIT
@@ -17,7 +17,7 @@
-
+
diff --git a/src/Sia.Skynet/UploadResponse.cs b/src/Sia.Skynet/UploadResponse.cs
index c9ae2bd..d23bb85 100644
--- a/src/Sia.Skynet/UploadResponse.cs
+++ b/src/Sia.Skynet/UploadResponse.cs
@@ -11,13 +11,13 @@ public class UploadResponse
public string Skylink { get; set; }
///
- /// The merkleroot
+ /// The hash that is encoded into the Skylink
///
public string Merkleroot { get; set; }
///
- /// The bitfield
+ /// The bitfield contains a version, an offset and a length in a heavily compressed and optimized format
///
- public byte Bitfield { get; set; }
+ public ushort Bitfield { get; set; }
}
}