Skip to content

Commit

Permalink
add multito construct
Browse files Browse the repository at this point in the history
  • Loading branch information
GalaxySciTech committed Aug 9, 2020
1 parent bbee6db commit bdf305e
Showing 1 changed file with 5 additions and 0 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -72,6 +72,11 @@ public BitcoinTransaction(List<MultiTo> multiToList, int changeIdx, long fee, Ar

public class MultiTo{

public MultiTo(String to, long amount) {
this.to = to;
this.amount = amount;
}

private String to;

private long amount;
Expand Down

0 comments on commit bdf305e

Please sign in to comment.