mirror of
https://github.com/BlueWallet/BlueWallet.git
synced 2025-02-21 14:34:55 +01:00
FIX: Display single address
This commit is contained in:
parent
a727bbed62
commit
1558cf3757
1 changed files with 6 additions and 0 deletions
|
@ -70,6 +70,12 @@ export default class ReceiveDetails extends Component {
|
|||
address: address,
|
||||
addressText: address,
|
||||
});
|
||||
} else if (wallet.getAddress) {
|
||||
address = wallet.getAddress();
|
||||
this.setState({
|
||||
address: address,
|
||||
addressText: address,
|
||||
});
|
||||
} else {
|
||||
alert('There was a problem obtaining your receive address. Please, try again.');
|
||||
this.props.navigation.goBack();
|
||||
|
|
Loading…
Add table
Reference in a new issue