Skip to content
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
16 changes: 16 additions & 0 deletions content/tutorials/pactus-wallet.md
Original file line number Diff line number Diff line change
Expand Up @@ -407,3 +407,19 @@ pactus-wallet.exe send withdraw <FROM> <TO> <AMOUNT>

{{< /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
```
Loading