Ran yarn prettier

This commit is contained in:
James Towle
2019-06-07 15:21:18 -07:00
committed by Amir Bandeali
parent b7adf59ed5
commit 03ea97734c
6 changed files with 12 additions and 26 deletions

View File

@@ -1,4 +1,3 @@
import { BigNumber } from './configured_bignumber';
import { RevertError } from './revert_error';
export class OnlyOwnerError extends RevertError {

View File

@@ -1,6 +1,5 @@
import { BigNumber } from './configured_bignumber';
import { RevertError } from './revert_error';
import * as _ from 'lodash';
// tslint:disable:max-classes-per-file
@@ -22,10 +21,7 @@ export class Uint256UnderflowError extends RevertError {
}
}
const types = [
Uint256OverflowError,
Uint256UnderflowError,
];
const types = [Uint256OverflowError, Uint256UnderflowError];
// Register the types we've defined.
for (const type of types) {