From 5875a211ff8db57818d0b9f3e31d5d28e75e6c41 Mon Sep 17 00:00:00 2001 From: Mostafa Date: Mon, 18 May 2026 16:59:34 +0800 Subject: [PATCH 1/2] wallet busy FAQ --- content/tutorials/pactus-wallet.md | 17 +++++++++++++++++ 1 file changed, 17 insertions(+) diff --git a/content/tutorials/pactus-wallet.md b/content/tutorials/pactus-wallet.md index f2c48e3..22ef417 100644 --- a/content/tutorials/pactus-wallet.md +++ b/content/tutorials/pactus-wallet.md @@ -407,3 +407,20 @@ pactus-wallet.exe send withdraw {{< /os_tab >}} {{< /os_tabs >}} + + +## FAQ + +### Database is locked (SQLITE_BUSY) Error + +This error happens when the wallet database is opened by more than one process at the same time. +By default, Pactus node starts the wallet in locked mode, which prevents external tools +(like pactus-wallet) from accessing the wallet. +This avoids conflicts, but it can cause this error if another tool tries to connect. + +To allow external access, change this [config](../get-started/configuration.md) and restart the node: + +```toml +[wallet] + lock_mode = false +``` From 2f8129c9f73c5b8b0ed885eab9170757f07fc815 Mon Sep 17 00:00:00 2001 From: Mostafa Date: Mon, 18 May 2026 17:00:00 +0800 Subject: [PATCH 2/2] wallet busy FAQ --- content/tutorials/pactus-wallet.md | 1 - 1 file changed, 1 deletion(-) diff --git a/content/tutorials/pactus-wallet.md b/content/tutorials/pactus-wallet.md index 22ef417..28f6468 100644 --- a/content/tutorials/pactus-wallet.md +++ b/content/tutorials/pactus-wallet.md @@ -408,7 +408,6 @@ pactus-wallet.exe send withdraw {{< /os_tab >}} {{< /os_tabs >}} - ## FAQ ### Database is locked (SQLITE_BUSY) Error