Fix undefined ether balance

This commit is contained in:
Brandon Millman
2018-06-06 01:33:21 -07:00
parent b5dc72b126
commit 2b4cd8b2ec
3 changed files with 13 additions and 9 deletions

View File

@@ -18,7 +18,7 @@ interface EthWethConversionButtonProps {
ethToken: Token;
dispatcher: Dispatcher;
blockchain: Blockchain;
userEtherBalanceInWei?: BigNumber;
userEtherBalanceInWei: BigNumber;
isOutdatedWrappedEther: boolean;
onConversionSuccessful?: () => void;
isDisabled?: boolean;