Skip to content
Open
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Original file line number Diff line number Diff line change
Expand Up @@ -156,6 +156,8 @@ public List<String> getSignatures() {
private long slot;
@Json(name = "transaction")
private Transaction transaction;
@Json(name = "blockTime")
private long blockTime;

public Meta getMeta() {
return meta;
Expand All @@ -169,4 +171,8 @@ public Transaction getTransaction() {
return transaction;
}

public long getBlockTime() {
return blockTime;
}

}