File tree Expand file tree Collapse file tree 2 files changed +0
-3
lines changed Expand file tree Collapse file tree 2 files changed +0
-3
lines changed Original file line number Diff line number Diff line change @@ -170,7 +170,6 @@ export const handleManageAppUpdateRequests = (window: BrowserWindow) => {
170170
171171 // We need to also wait for `cardano-node` to exit cleanly, otherwise the new auto-updated version
172172 // is showing the new node crashing, because the old one is still running for around 30 seconds:
173- // WRONG: safeExitWithCode(20);
174173 ( window as any ) . daedalusExitCode = 20 ;
175174 window . close ( ) ;
176175 return resolve ( response ( true , functionPrefix ) ) ;
Original file line number Diff line number Diff line change @@ -64,7 +64,6 @@ export const buildAppMenus = async (
6464 code : 21 ,
6565 } ) ;
6666 // We have to make sure that cardano-node exits, otherwise we get DB locked errors at startup:
67- // WRONG: safeExitWithCode(21);
6867 ( mainWindow as any ) . daedalusExitCode = 21 ;
6968 mainWindow . close ( ) ;
7069 } ;
@@ -78,7 +77,6 @@ export const buildAppMenus = async (
7877 code : 22 ,
7978 } ) ;
8079 // We have to make sure that cardano-node exits, otherwise we get DB locked errors at startup:
81- // WRONG: safeExitWithCode(22);
8280 ( mainWindow as any ) . daedalusExitCode = 22 ;
8381 mainWindow . close ( ) ;
8482 } ;
You can’t perform that action at this time.
0 commit comments