diff options
author | Leonid Logvinov <logvinov.leon@gmail.com> | 2018-01-23 05:19:29 +0800 |
---|---|---|
committer | Leonid Logvinov <logvinov.leon@gmail.com> | 2018-01-30 23:01:36 +0800 |
commit | a17091b394400ae13b7f85632b2c4a2e20935442 (patch) | |
tree | 217cef1998de9e6730431442cae6a3aacd456778 /packages/types | |
parent | ed77c6cb544e9d7e663e672b1190806a7302cf17 (diff) | |
download | dexon-0x-contracts-a17091b394400ae13b7f85632b2c4a2e20935442.tar.gz dexon-0x-contracts-a17091b394400ae13b7f85632b2c4a2e20935442.tar.zst dexon-0x-contracts-a17091b394400ae13b7f85632b2c4a2e20935442.zip |
Make awaitTransactionMinedAsync non-generic again
Diffstat (limited to 'packages/types')
-rw-r--r-- | packages/types/src/index.ts | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/packages/types/src/index.ts b/packages/types/src/index.ts index 0e409c93d..7b53b52c4 100644 --- a/packages/types/src/index.ts +++ b/packages/types/src/index.ts @@ -53,6 +53,6 @@ export enum SolidityTypes { Uint = 'uint', } -export interface TransactionReceiptWithDecodedLogs<ArgsType> extends TransactionReceipt { - logs: Array<LogWithDecodedArgs<ArgsType> | Web3.LogEntry>; +export interface TransactionReceiptWithDecodedLogs extends TransactionReceipt { + logs: Array<LogWithDecodedArgs<DecodedLogArgs> | Web3.LogEntry>; } |