updated tests (#13)

* updated tests

* Bundle: fixed addEntry
This commit is contained in:
Oliver Nitzschke
2016-12-22 14:55:13 +01:00
committed by Gianluigi Davassi
parent bee2aa3302
commit 9af3d2d027
4 changed files with 73 additions and 63 deletions
@@ -41,6 +41,14 @@ public class Transaction {
this.nonce = nonce;
}
public Transaction(String address, String value, String tag, String timestamp) {
this.address = address;
this.value = value;
this.tag = tag;
this.timestamp = timestamp;
}
@Override
public String toString() {
return ToStringBuilder.reflectionToString(this, ToStringStyle.MULTI_LINE_STYLE);