Skip to content

Commit

Permalink
Fixed a bug in BlockTemplateTransaction.cs - fee de-serilization bug. F…
Browse files Browse the repository at this point in the history
…ixed #503.
  • Loading branch information
bonesoul committed Sep 29, 2014
1 parent 493954e commit 9019b7f
Showing 1 changed file with 4 additions and 1 deletion.
5 changes: 4 additions & 1 deletion src/CoiniumServ/Daemon/Responses/BlockTemplateTransaction.cs
Original file line number Diff line number Diff line change
Expand Up @@ -20,6 +20,9 @@
// license or white-label it as set out in licenses/commercial.txt.
//
#endregion

using System;

namespace CoiniumServ.Daemon.Responses
{
/// <summary>
Expand All @@ -44,7 +47,7 @@ public class BlockTemplateTransaction
/// difference in value between transaction inputs and outputs (in Satoshis); for coinbase transactions, this is a negative Number of the
/// total collected block fees (ie, not including the block subsidy); if key is not present, fee is unknown and clients MUST NOT assume there isn't one
/// </summary>
public uint Fee { get; set; }
public UInt64 Fee { get; set; }

/// <summary>
/// hash/id encoded in little-endian hexadecimal
Expand Down

0 comments on commit 9019b7f

Please sign in to comment.