Skip to content

Commit f7fd126

Browse files
authored
wallet busy FAQ (#106)
1 parent 99afe02 commit f7fd126

1 file changed

Lines changed: 16 additions & 0 deletions

File tree

content/tutorials/pactus-wallet.md

Lines changed: 16 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -407,3 +407,19 @@ pactus-wallet.exe send withdraw <FROM> <TO> <AMOUNT>
407407

408408
{{< /os_tab >}}
409409
{{< /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

Comments
 (0)