diff options
author | Brandon Millman <brandon.millman@gmail.com> | 2017-08-31 23:33:34 +0800 |
---|---|---|
committer | Brandon Millman <brandon.millman@gmail.com> | 2017-08-31 23:33:34 +0800 |
commit | 18a5f7485cfad5970c675aa239bc7f5136967c7d (patch) | |
tree | ab433cbaf7c5888717f52cace06ff026a444e23f /src | |
parent | 0ff6cc19972089143dfc5d9c9a66c196355b0bbc (diff) | |
download | dexon-sol-tools-18a5f7485cfad5970c675aa239bc7f5136967c7d.tar dexon-sol-tools-18a5f7485cfad5970c675aa239bc7f5136967c7d.tar.gz dexon-sol-tools-18a5f7485cfad5970c675aa239bc7f5136967c7d.tar.bz2 dexon-sol-tools-18a5f7485cfad5970c675aa239bc7f5136967c7d.tar.lz dexon-sol-tools-18a5f7485cfad5970c675aa239bc7f5136967c7d.tar.xz dexon-sol-tools-18a5f7485cfad5970c675aa239bc7f5136967c7d.tar.zst dexon-sol-tools-18a5f7485cfad5970c675aa239bc7f5136967c7d.zip |
Fix type of ExchangeContract.getOrderHash.call
Diffstat (limited to 'src')
-rw-r--r-- | src/types.ts | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/types.ts b/src/types.ts index 137faee50..2400a9a60 100644 --- a/src/types.ts +++ b/src/types.ts @@ -119,7 +119,7 @@ export interface ExchangeContract extends ContractInstance { call: (orderHash: string) => Promise<BigNumber.BigNumber>; }; getOrderHash: { - call: (orderAddresses: OrderAddresses, orderValues: OrderValues) => string; + call: (orderAddresses: OrderAddresses, orderValues: OrderValues) => Promise<string>; }; } |