Make TransactionResponse hash required (#537).

This commit is contained in:
Richard Moore 2019-06-05 21:49:38 -04:00
parent 69bfc6b736
commit 095c1fe579
No known key found for this signature in database
GPG Key ID: 525F70A6FCABC295
1 changed files with 2 additions and 0 deletions

View File

@ -28,6 +28,8 @@ export type TransactionRequest = {
}
export interface TransactionResponse extends Transaction {
hash: string;
// Only if a transaction has been mined
blockNumber?: number,
blockHash?: string,