We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 99afe02 commit f7fd126Copy full SHA for f7fd126
1 file changed
content/tutorials/pactus-wallet.md
@@ -407,3 +407,19 @@ pactus-wallet.exe send withdraw <FROM> <TO> <AMOUNT>
407
408
{{< /os_tab >}}
409
{{< /os_tabs >}}
410
+
411
+## FAQ
412
413
+### Database is locked (SQLITE_BUSY) Error
414
415
+This error happens when the wallet database is opened by more than one process at the same time.
416
+By default, Pactus node starts the wallet in locked mode, which prevents external tools
417
+(like pactus-wallet) from accessing the wallet.
418
+This avoids conflicts, but it can cause this error if another tool tries to connect.
419
420
+To allow external access, change this [config](../get-started/configuration.md) and restart the node:
421
422
+```toml
423
+[wallet]
424
+ lock_mode = false
425
+```
0 commit comments