aboutsummaryrefslogtreecommitdiffstats
path: root/packages/contracts/test/multi_sig_with_time_lock_except_remove_auth_addr.ts
diff options
context:
space:
mode:
authorLeonid Logvinov <logvinov.leon@gmail.com>2018-01-19 21:21:50 +0800
committerLeonid Logvinov <logvinov.leon@gmail.com>2018-01-30 23:01:36 +0800
commit20c88a46d9d87835bd9ddc30374309d615a9cf9f (patch)
treea03640e8e7ce7b8fe57641c0fe3b66868e4831e7 /packages/contracts/test/multi_sig_with_time_lock_except_remove_auth_addr.ts
parent661029f7ccf8e28e87faf85bb451298b3b066bfa (diff)
downloaddexon-sol-tools-20c88a46d9d87835bd9ddc30374309d615a9cf9f.tar
dexon-sol-tools-20c88a46d9d87835bd9ddc30374309d615a9cf9f.tar.gz
dexon-sol-tools-20c88a46d9d87835bd9ddc30374309d615a9cf9f.tar.bz2
dexon-sol-tools-20c88a46d9d87835bd9ddc30374309d615a9cf9f.tar.lz
dexon-sol-tools-20c88a46d9d87835bd9ddc30374309d615a9cf9f.tar.xz
dexon-sol-tools-20c88a46d9d87835bd9ddc30374309d615a9cf9f.tar.zst
dexon-sol-tools-20c88a46d9d87835bd9ddc30374309d615a9cf9f.zip
Remove truffle from UnlimitedAllowanceTokenV2 tests
Diffstat (limited to 'packages/contracts/test/multi_sig_with_time_lock_except_remove_auth_addr.ts')
-rw-r--r--packages/contracts/test/multi_sig_with_time_lock_except_remove_auth_addr.ts3
1 files changed, 1 insertions, 2 deletions
diff --git a/packages/contracts/test/multi_sig_with_time_lock_except_remove_auth_addr.ts b/packages/contracts/test/multi_sig_with_time_lock_except_remove_auth_addr.ts
index 27b885438..f8e8c1f8d 100644
--- a/packages/contracts/test/multi_sig_with_time_lock_except_remove_auth_addr.ts
+++ b/packages/contracts/test/multi_sig_with_time_lock_except_remove_auth_addr.ts
@@ -23,7 +23,6 @@ const blockchainLifecycle = new BlockchainLifecycle(constants.RPC_URL);
describe('MultiSigWalletWithTimeLockExceptRemoveAuthorizedAddress', () => {
const web3Wrapper = new Web3Wrapper(web3.currentProvider);
- let accounts: string[];
let owners: string[];
const requiredApprovals = 2;
const SECONDS_TIME_LOCKED = 1000000;
@@ -38,7 +37,7 @@ describe('MultiSigWalletWithTimeLockExceptRemoveAuthorizedAddress', () => {
let validDestination: string;
before(async () => {
- accounts = await web3Wrapper.getAvailableAddressesAsync();
+ const accounts = await web3Wrapper.getAvailableAddressesAsync();
owners = [accounts[0], accounts[1]];
authorizedAddress = `0x${crypto
.solSHA3([accounts[0]])