diff options
author | Amir Bandeali <abandeali1@gmail.com> | 2018-07-07 05:12:53 +0800 |
---|---|---|
committer | Amir Bandeali <abandeali1@gmail.com> | 2018-07-11 02:24:22 +0800 |
commit | 092ca6bcf5de2d94ff503f11233c87d428eedcb8 (patch) | |
tree | 892cc61220dd4bbc769ef0e43c034b9a780103b0 /packages/contracts/test/utils | |
parent | 2625cbbfed087dae55c62950a9260145cf5ca8e6 (diff) | |
download | dexon-sol-tools-092ca6bcf5de2d94ff503f11233c87d428eedcb8.tar dexon-sol-tools-092ca6bcf5de2d94ff503f11233c87d428eedcb8.tar.gz dexon-sol-tools-092ca6bcf5de2d94ff503f11233c87d428eedcb8.tar.bz2 dexon-sol-tools-092ca6bcf5de2d94ff503f11233c87d428eedcb8.tar.lz dexon-sol-tools-092ca6bcf5de2d94ff503f11233c87d428eedcb8.tar.xz dexon-sol-tools-092ca6bcf5de2d94ff503f11233c87d428eedcb8.tar.zst dexon-sol-tools-092ca6bcf5de2d94ff503f11233c87d428eedcb8.zip |
Use 0.4.10 in AssetProxyOwner, add readBytes4 to contract and remove LibBytes
Diffstat (limited to 'packages/contracts/test/utils')
-rw-r--r-- | packages/contracts/test/utils/constants.ts | 3 | ||||
-rw-r--r-- | packages/contracts/test/utils/multi_sig_wrapper.ts | 7 |
2 files changed, 8 insertions, 2 deletions
diff --git a/packages/contracts/test/utils/constants.ts b/packages/contracts/test/utils/constants.ts index 7f3ad62e1..e8995f9d6 100644 --- a/packages/contracts/test/utils/constants.ts +++ b/packages/contracts/test/utils/constants.ts @@ -24,9 +24,10 @@ export const constants = { // ensure we always use the minimum interval. AWAIT_TRANSACTION_MINED_MS: 0, MAX_ETHERTOKEN_WITHDRAW_GAS: 43000, + MAX_EXECUTE_TRANSACTION_GAS: 1000000, MAX_TOKEN_TRANSFERFROM_GAS: 80000, MAX_TOKEN_APPROVE_GAS: 60000, - TRANSFER_FROM_GAS: 150000, + MAX_TRANSFER_FROM_GAS: 150000, DUMMY_TOKEN_NAME: '', DUMMY_TOKEN_SYMBOL: '', DUMMY_TOKEN_DECIMALS: new BigNumber(18), diff --git a/packages/contracts/test/utils/multi_sig_wrapper.ts b/packages/contracts/test/utils/multi_sig_wrapper.ts index 6e7746dfc..2024c177d 100644 --- a/packages/contracts/test/utils/multi_sig_wrapper.ts +++ b/packages/contracts/test/utils/multi_sig_wrapper.ts @@ -6,6 +6,7 @@ import * as _ from 'lodash'; import { AssetProxyOwnerContract } from '../../generated_contract_wrappers/asset_proxy_owner'; import { MultiSigWalletContract } from '../../generated_contract_wrappers/multi_sig_wallet'; +import { constants } from './constants'; import { LogDecoder } from './log_decoder'; export class MultiSigWrapper { @@ -36,7 +37,10 @@ export class MultiSigWrapper { return tx; } public async executeTransactionAsync(txId: BigNumber, from: string): Promise<TransactionReceiptWithDecodedLogs> { - const txHash = await this._multiSig.executeTransaction.sendTransactionAsync(txId, { from }); + const txHash = await this._multiSig.executeTransaction.sendTransactionAsync(txId, { + from, + gas: constants.MAX_EXECUTE_TRANSACTION_GAS, + }); const tx = await this._logDecoder.getTxWithDecodedLogsAsync(txHash); return tx; } @@ -48,6 +52,7 @@ export class MultiSigWrapper { const txHash = await (this ._multiSig as AssetProxyOwnerContract).executeRemoveAuthorizedAddressAtIndex.sendTransactionAsync(txId, { from, + gas: constants.MAX_EXECUTE_TRANSACTION_GAS, }); const tx = await this._logDecoder.getTxWithDecodedLogsAsync(txHash); return tx; |