Skip to content

Commit

Permalink
fix(SelectBoxBitcoin): dont include 'My x Wallets'
Browse files Browse the repository at this point in the history
  • Loading branch information
plondon committed May 8, 2018
1 parent e97a087 commit d255f92
Showing 1 changed file with 1 addition and 1 deletion.
Expand Up @@ -93,7 +93,7 @@ const FirstStep = props => {
<FormLabel for='from'>
<FormattedMessage id='modals.sendbtc.firststep.from' defaultMessage='From:' />
</FormLabel>
<Field name='from' component={SelectBoxBitcoinAddresses} validate={[required]} />
<Field name='from' component={SelectBoxBitcoinAddresses} validate={[required]} includeAll={false} />
{watchOnly &&
<Row>
<Field name='priv' placeholder='Please enter your private key...' component={TextBox} validate={[required, validBitcoinPrivateKey, isAddressDerivedFromPriv]} autoFocus />
Expand Down

0 comments on commit d255f92

Please sign in to comment.