Skip to content

Commit

Permalink
transaction data
Browse files Browse the repository at this point in the history
  • Loading branch information
M-blockcoder committed Jun 4, 2020
1 parent dcb16e5 commit bff95da
Showing 1 changed file with 6 additions and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -107,6 +107,10 @@ public class TransactionTriggerEntity implements Serializable {
@JsonProperty(value = "latestSolidifiedBlockNumber")
private long latestSolidifiedBlockNumber;

@Field(value = "data")
@JsonProperty(value = "data")
private String data;

public String getContractType() {
return contractType;
}
Expand All @@ -118,7 +122,7 @@ public TransactionTriggerEntity(String transactionId, String blockHash,
String fromAddress, String toAddress, String assetName, long assetAmount,
String contractResult,long contractCallValue, String result,
String contractAddress, String contractType,
long feeLimit,long timeStamp, long latestSolidifiedBlockNumber) {
long feeLimit,long timeStamp, long latestSolidifiedBlockNumber, String data) {
this.transactionId = transactionId;
this.blockHash = blockHash;
this.blockNumber = blockNumber;
Expand All @@ -141,5 +145,6 @@ public TransactionTriggerEntity(String transactionId, String blockHash,
this.feeLimit = feeLimit;
this.timeStamp = timeStamp;
this.latestSolidifiedBlockNumber = latestSolidifiedBlockNumber;
this.data = data;
}
}

0 comments on commit bff95da

Please sign in to comment.