Skip to content

Commit 4eae12b

Browse files
committed
fix: init with sleep
1 parent a838603 commit 4eae12b

File tree

3 files changed

+3
-3
lines changed

3 files changed

+3
-3
lines changed

src/app_service/service/keycardV2/service.nim

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -93,7 +93,6 @@ QtObject:
9393

9494
proc init*(self: Service) =
9595
debug "KeycardServiceV2 init"
96-
keycard_go.initializeLibrary()
9796
# Do not remove the sleep 700, this sleep prevents a crash on intel MacOS
9897
# with errors like bad flushGen 12 in prepareForSweep; sweepgen 0
9998
# More details: https://github.com/status-im/status-desktop/pull/15194

src/nim_status_client.nim

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -152,8 +152,9 @@ proc mainProc() =
152152
quit()
153153
154154
status_go.initializeStatusGo()
155-
sleep(50)
155+
sleep(2000)
156156
keycard_go.initializeStatusKeycardGo()
157+
sleep(2000)
157158
158159
if main_constants.IS_MACOS and defined(production):
159160
setCurrentDir(getAppDir())

vendor/nim-keycard-go

0 commit comments

Comments
 (0)