Skip to content
This repository has been archived by the owner on Jul 9, 2021. It is now read-only.

Commit

Permalink
Fix build errors
Browse files Browse the repository at this point in the history
  • Loading branch information
abandeali1 committed Jun 10, 2019
1 parent 6ac9b2b commit 6342faa
Show file tree
Hide file tree
Showing 6 changed files with 7 additions and 2 deletions.
3 changes: 2 additions & 1 deletion contracts/dev-utils/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -82,7 +82,8 @@
"@0x/typescript-typings": "^4.2.2",
"@0x/utils": "^4.3.3",
"@0x/web3-wrapper": "^6.0.6",
"ethereum-types": "^2.1.2"
"ethereum-types": "^2.1.2",
"ethereumjs-util": "^5.1.1"
},
"publishConfig": {
"access": "public"
Expand Down
1 change: 1 addition & 0 deletions contracts/dev-utils/test/lib_asset_data.ts
Original file line number Diff line number Diff line change
Expand Up @@ -524,3 +524,4 @@ describe('LibAssetData', () => {
});
});
});
// tslint:disable:max-file-line-count
1 change: 1 addition & 0 deletions packages/0x.js/src/index.ts
Original file line number Diff line number Diff line change
Expand Up @@ -97,6 +97,7 @@ export {
ERC1155AssetData,
MultiAssetData,
MultiAssetDataWithRecursiveDecoding,
StaticCallAssetData,
SignatureType,
ObjectMap,
OrderRelevantState,
Expand Down
1 change: 1 addition & 0 deletions packages/contract-wrappers/src/index.ts
Original file line number Diff line number Diff line change
Expand Up @@ -70,6 +70,7 @@ export {
ERC1155AssetData,
SingleAssetData,
MultiAssetData,
StaticCallAssetData,
MultiAssetDataWithRecursiveDecoding,
DutchAuctionDetails,
Order,
Expand Down
1 change: 1 addition & 0 deletions packages/order-utils/src/index.ts
Original file line number Diff line number Diff line change
Expand Up @@ -49,6 +49,7 @@ export {
ERC721AssetData,
ERC1155AssetData,
MultiAssetData,
StaticCallAssetData,
MultiAssetDataWithRecursiveDecoding,
AssetProxyId,
SignatureType,
Expand Down
2 changes: 1 addition & 1 deletion packages/types/src/index.ts
Original file line number Diff line number Diff line change
Expand Up @@ -279,7 +279,7 @@ export enum RevertReason {
WalletError = 'WALLET_ERROR',
ValidatorError = 'VALIDATOR_ERROR',
InvalidFunctionSelector = 'INVALID_FUNCTION_SELECTOR',
InvalidAssetData = 'InvalidAssetData',
InvalidAssetData = 'INVALID_ASSET_DATA',
InvalidAssetProxy = 'INVALID_ASSET_PROXY',
UnregisteredAssetProxy = 'UNREGISTERED_ASSET_PROXY',
TxFullyConfirmed = 'TX_FULLY_CONFIRMED',
Expand Down

0 comments on commit 6342faa

Please sign in to comment.