fix: remove requirement of default case in all switch statements

This commit is contained in:
fragosti
2018-11-12 17:30:28 -08:00
parent 711b307e6c
commit 01b36b4949
8 changed files with 12 additions and 22 deletions

View File

@@ -8,9 +8,8 @@ const etherscanPrefix = (networkId: number): string | undefined => {
return 'kovan.';
case Network.Mainnet:
return '';
default:
return undefined;
}
return '';
};
export const etherscanUtil = {