aboutsummaryrefslogtreecommitdiffstats
path: root/contracts/test-utils/src/assertions.ts
diff options
context:
space:
mode:
authorLeonid Logvinov <logvinov.leon@gmail.com>2018-12-13 02:59:31 +0800
committerLeonid Logvinov <logvinov.leon@gmail.com>2018-12-13 02:59:31 +0800
commit0e76d66f2457015bbc421e7ead2887008fb54ffc (patch)
treee1ef71e3f723172cce93e7ff1170b817ffc0ce7a /contracts/test-utils/src/assertions.ts
parent2b523a36c58b207a27dee4078237919d628dc588 (diff)
downloaddexon-sol-tools-0e76d66f2457015bbc421e7ead2887008fb54ffc.tar
dexon-sol-tools-0e76d66f2457015bbc421e7ead2887008fb54ffc.tar.gz
dexon-sol-tools-0e76d66f2457015bbc421e7ead2887008fb54ffc.tar.bz2
dexon-sol-tools-0e76d66f2457015bbc421e7ead2887008fb54ffc.tar.lz
dexon-sol-tools-0e76d66f2457015bbc421e7ead2887008fb54ffc.tar.xz
dexon-sol-tools-0e76d66f2457015bbc421e7ead2887008fb54ffc.tar.zst
dexon-sol-tools-0e76d66f2457015bbc421e7ead2887008fb54ffc.zip
Fix linter errors
Diffstat (limited to 'contracts/test-utils/src/assertions.ts')
-rw-r--r--contracts/test-utils/src/assertions.ts12
1 files changed, 6 insertions, 6 deletions
diff --git a/contracts/test-utils/src/assertions.ts b/contracts/test-utils/src/assertions.ts
index b1dec1281..f31651f4d 100644
--- a/contracts/test-utils/src/assertions.ts
+++ b/contracts/test-utils/src/assertions.ts
@@ -23,7 +23,7 @@ export type sendTransactionResult = Promise<TransactionReceipt | TransactionRece
* @returns either the given ganacheError or gethError depending on the backing
* node.
*/
-async function _getGanacheOrGethError(ganacheError: string, gethError: string): Promise<string> {
+async function _getGanacheOrGethErrorAsync(ganacheError: string, gethError: string): Promise<string> {
if (_.isUndefined(nodeType)) {
nodeType = await web3Wrapper.getNodeTypeAsync();
}
@@ -38,15 +38,15 @@ async function _getGanacheOrGethError(ganacheError: string, gethError: string):
}
async function _getInsufficientFundsErrorMessageAsync(): Promise<string> {
- return _getGanacheOrGethError("sender doesn't have enough funds", 'insufficient funds');
+ return _getGanacheOrGethErrorAsync("sender doesn't have enough funds", 'insufficient funds');
}
async function _getTransactionFailedErrorMessageAsync(): Promise<string> {
- return _getGanacheOrGethError('revert', 'always failing transaction');
+ return _getGanacheOrGethErrorAsync('revert', 'always failing transaction');
}
async function _getContractCallFailedErrorMessageAsync(): Promise<string> {
- return _getGanacheOrGethError('revert', 'Contract call failed');
+ return _getGanacheOrGethErrorAsync('revert', 'Contract call failed');
}
/**
@@ -54,7 +54,7 @@ async function _getContractCallFailedErrorMessageAsync(): Promise<string> {
* contract call. The exact error message depends on the backing Ethereum node.
*/
export async function getInvalidOpcodeErrorMessageForCallAsync(): Promise<string> {
- return _getGanacheOrGethError('invalid opcode', 'Contract call failed');
+ return _getGanacheOrGethErrorAsync('invalid opcode', 'Contract call failed');
}
/**
@@ -65,7 +65,7 @@ export async function getInvalidOpcodeErrorMessageForCallAsync(): Promise<string
* @returns the expected error message.
*/
export async function getRevertReasonOrErrorMessageForSendTransactionAsync(reason: RevertReason): Promise<string> {
- return _getGanacheOrGethError(reason, 'always failing transaction');
+ return _getGanacheOrGethErrorAsync(reason, 'always failing transaction');
}
/**