mirror of
https://github.com/gosticks/iota.lib.java.git
synced 2026-08-31 05:10:25 +00:00
* implemented toTrytes and toStrings * added TrytesConverterTest * WIP * added checksum calculation, pls review * updated checksum * updated tests * fixed getnewaddress
16 lines
342 B
Java
16 lines
342 B
Java
package jota.dto.response;
|
|
|
|
import jota.model.Transaction;
|
|
|
|
import java.util.ArrayList;
|
|
import java.util.List;
|
|
|
|
public class AnalyzeTransactionResponse extends AbstractResponse {
|
|
|
|
private List<Transaction> transactions = new ArrayList<Transaction>();
|
|
|
|
public List<Transaction> getTransactions() {
|
|
return transactions;
|
|
}
|
|
}
|