rc bump + loading message
Show initializing message after blockchain headers download status disappears
This commit is contained in:
parent
a8092cec0a
commit
938fa70ac3
2 changed files with 2 additions and 7 deletions
|
@ -132,7 +132,7 @@
|
|||
"yarn": "^1.3"
|
||||
},
|
||||
"lbrySettings": {
|
||||
"lbrynetDaemonVersion": "0.21.1rc1",
|
||||
"lbrynetDaemonVersion": "0.21.1rc2",
|
||||
"lbrynetDaemonUrlTemplate": "https://github.com/lbryio/lbry/releases/download/vDAEMONVER/lbrynet-daemon-vDAEMONVER-OSNAME.zip",
|
||||
"lbrynetDaemonDir": "static/daemon",
|
||||
"lbrynetDaemonFileName": "lbrynet-daemon"
|
||||
|
|
|
@ -110,12 +110,7 @@ export class SplashScreen extends React.PureComponent<Props, State> {
|
|||
message: __('Blockchain Sync'),
|
||||
details: __(format, status.wallet.blocks_behind),
|
||||
});
|
||||
} else if (
|
||||
status.blockchain_headers &&
|
||||
status.blockchain_headers.download_progress === 100 &&
|
||||
status.wallet &&
|
||||
status.wallet.blocks_behind === 0
|
||||
) {
|
||||
} else if (status.wallet && status.wallet.blocks_behind === 0) {
|
||||
this.setState({
|
||||
message: 'Network Loading',
|
||||
details: 'Initializing LBRY service...',
|
||||
|
|
Loading…
Add table
Reference in a new issue