Skip to content

Commit

Permalink
doco
Browse files Browse the repository at this point in the history
  • Loading branch information
jrick committed Feb 26, 2016
1 parent a536b22 commit ae75f82
Showing 1 changed file with 6 additions and 0 deletions.
6 changes: 6 additions & 0 deletions Paymetheus.Bitcoin/Wallet/TransactionBuilder.cs
Original file line number Diff line number Diff line change
Expand Up @@ -10,6 +10,12 @@ namespace Paymetheus.Bitcoin.Wallet
{
public static class TransactionBuilder
{
/// <summary>
/// Provides transaction inputs referencing spendable outputs to construct a
/// transaction with some target output amount.
/// </summary>
/// <param name="target">Target amount the previous output value must meet or exceed.</param>
/// <returns>Total previous output amount and array of transaction inputs if the target was met.</returns>
public delegate Task<Tuple<Amount, Transaction.Input[]>> InputSource(Amount target);

/// <summary>
Expand Down

0 comments on commit ae75f82

Please sign in to comment.