Rename transaction to transactions

This commit is contained in:
Manfred Karrer 2016-06-06 13:47:40 +02:00
parent 7eff8dc02e
commit d7f996946e

View File

@ -72,8 +72,8 @@ public class SelectDepositTxWindow extends Overlay<SelectDepositTxWindow> {
return this;
}
public SelectDepositTxWindow transactions(List<Transaction> transaction) {
this.transactions = transaction;
public SelectDepositTxWindow transactions(List<Transaction> transactions) {
this.transactions = transactions;
return this;
}