From b2e037bb67752556e0d20bf79c9aae9a10af16cc Mon Sep 17 00:00:00 2001 From: DanS Date: Mon, 10 Aug 2026 10:20:32 -0500 Subject: [PATCH] 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) --- .gitignore | 4 ++++ 1 file changed, 4 insertions(+) diff --git a/.gitignore b/.gitignore index 134ccab..47b4daa 100644 --- a/.gitignore +++ b/.gitignore @@ -33,6 +33,10 @@ imgui.ini *.bak* *.params asmap.dat +# Wallet files hold PRIVATE KEYS — never commit them +wallet.dat +wallet-*.dat +wallet.dat.* /external/drg-xmrig /memory /todo.md