chore(gitignore): never track wallet.dat (holds private keys)

A wallet.dat placed in the repo root for recovery was untracked but NOT ignored,
so a stray 'git add .' could commit private keys. *.bak already covered the
salvage backups; add wallet.dat / wallet-*.dat / wallet.dat.* explicitly.

Co-Authored-By: Claude Opus 4.8 (1M context) <noreply@anthropic.com>
This commit is contained in:
2026-08-10 10:20:32 -05:00
parent 975650f11b
commit b2e037bb67

4
.gitignore vendored
View File

@@ -33,6 +33,10 @@ imgui.ini
*.bak* *.bak*
*.params *.params
asmap.dat asmap.dat
# Wallet files hold PRIVATE KEYS — never commit them
wallet.dat
wallet-*.dat
wallet.dat.*
/external/drg-xmrig /external/drg-xmrig
/memory /memory
/todo.md /todo.md