Change blockchain prop to not optional

This commit is contained in:
Brandon Millman
2018-03-21 15:45:11 -07:00
parent 3916383dd0
commit 9f8e41cbfa

View File

@@ -28,7 +28,7 @@ import { utils } from 'ts/utils/utils';
export interface WalletProps {
userAddress?: string;
networkId?: number;
blockchain?: Blockchain;
blockchain: Blockchain;
blockchainIsLoaded: boolean;
blockchainErr: BlockchainErrs;
dispatcher: Dispatcher;