aboutsummaryrefslogtreecommitdiffstats
path: root/src/utils/assert.ts
diff options
context:
space:
mode:
Diffstat (limited to 'src/utils/assert.ts')
-rw-r--r--src/utils/assert.ts5
1 files changed, 3 insertions, 2 deletions
diff --git a/src/utils/assert.ts b/src/utils/assert.ts
index f4d653ffb..4dc6945a2 100644
--- a/src/utils/assert.ts
+++ b/src/utils/assert.ts
@@ -34,8 +34,9 @@ export const assert = {
async isSenderAddressAvailableAsync(web3Wrapper: Web3Wrapper, variableName: string,
senderAddressHex: string): Promise<void> {
const isSenderAddressAvailable = await web3Wrapper.isSenderAddressAvailableAsync(senderAddressHex);
- assert.assert(isSenderAddressAvailable, `Specified ${variableName} ${senderAddressHex} isn't available \
- through the supplied web3 instance`);
+ assert.assert(isSenderAddressAvailable,
+ `Specified ${variableName} ${senderAddressHex} isn't available through the supplied web3 instance`,
+ );
},
async isUserAddressAvailableAsync(web3Wrapper: Web3Wrapper): Promise<void> {
const availableAddresses = await web3Wrapper.getAvailableAddressesAsync();