File tree Expand file tree Collapse file tree 3 files changed +2
-2
lines changed Expand file tree Collapse file tree 3 files changed +2
-2
lines changed Original file line number Diff line number Diff line change 44
55### Fixes
66
7+ - Fixed cardano-node startup race condition
78- Fixed automatic closing of the wallet "Restoration" dialog during restoration of a first wallet in UI
89- Fixed Daedalus 4.5.0 Windows deployment issue
910
Original file line number Diff line number Diff line change @@ -794,7 +794,7 @@ export class CardanoNode {
794794 * @private
795795 */
796796 _canBeStarted = async ( ) : Promise < boolean > => {
797- if ( this . _isConnected ( ) ) {
797+ if ( this . _isConnected ( ) || this . state === CardanoNodeStates . STARTING ) {
798798 return false ;
799799 }
800800 try {
Original file line number Diff line number Diff line change @@ -172,7 +172,6 @@ export default class NetworkStatusStore extends Store {
172172
173173 // Setup disk space checks
174174 getDiskSpaceStatusChannel . onReceive ( this . _onCheckDiskSpace ) ;
175- this . _checkDiskSpace ( ) ;
176175
177176 this . _getStateDirectoryPath ( ) ;
178177
You can’t perform that action at this time.
0 commit comments