aboutsummaryrefslogtreecommitdiffstats
path: root/src/types.ts
diff options
context:
space:
mode:
authorBrandon Millman <brandon.millman@gmail.com>2017-08-31 23:33:34 +0800
committerBrandon Millman <brandon.millman@gmail.com>2017-08-31 23:33:34 +0800
commit18a5f7485cfad5970c675aa239bc7f5136967c7d (patch)
treeab433cbaf7c5888717f52cace06ff026a444e23f /src/types.ts
parent0ff6cc19972089143dfc5d9c9a66c196355b0bbc (diff)
downloaddexon-0x-contracts-18a5f7485cfad5970c675aa239bc7f5136967c7d.tar
dexon-0x-contracts-18a5f7485cfad5970c675aa239bc7f5136967c7d.tar.gz
dexon-0x-contracts-18a5f7485cfad5970c675aa239bc7f5136967c7d.tar.bz2
dexon-0x-contracts-18a5f7485cfad5970c675aa239bc7f5136967c7d.tar.lz
dexon-0x-contracts-18a5f7485cfad5970c675aa239bc7f5136967c7d.tar.xz
dexon-0x-contracts-18a5f7485cfad5970c675aa239bc7f5136967c7d.tar.zst
dexon-0x-contracts-18a5f7485cfad5970c675aa239bc7f5136967c7d.zip
Fix type of ExchangeContract.getOrderHash.call
Diffstat (limited to 'src/types.ts')
-rw-r--r--src/types.ts2
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>;
};
}