Document IndexedTx.timestamp

This commit is contained in:
Simon Warta 2020-03-02 17:38:21 +01:00
parent 23f88564e5
commit d0ddcd8ea4
2 changed files with 2 additions and 0 deletions

View File

@ -114,6 +114,7 @@ export interface IndexedTx {
readonly gasWanted?: number;
/** The gas used by the execution */
readonly gasUsed?: number;
/** An RFC 3339 time string like e.g. '2020-02-15T10:39:10.4696305Z' */
readonly timestamp: string;
}

View File

@ -83,6 +83,7 @@ export interface IndexedTx {
readonly gasWanted?: number;
/** The gas used by the execution */
readonly gasUsed?: number;
/** An RFC 3339 time string like e.g. '2020-02-15T10:39:10.4696305Z' */
readonly timestamp: string;
}
export interface BlockHeader {