aboutsummaryrefslogtreecommitdiff
path: root/src/wallet/db.cpp
diff options
context:
space:
mode:
authorpracticalswift <practicalswift@users.noreply.github.com>2018-08-14 09:27:30 +0200
committerpracticalswift <practicalswift@users.noreply.github.com>2018-09-04 13:11:26 +0200
commitada356208e153e088c729c102d5d79c9c9d66f1a (patch)
treef379a875fbf5208de2fe211c0f5c343bc1bc51f0 /src/wallet/db.cpp
parent59ecacfc84af13e5a1608e7d970315d07dcb0269 (diff)
downloadbitcoin-ada356208e153e088c729c102d5d79c9c9d66f1a.tar.xz
Fix typos reported by codespell
Diffstat (limited to 'src/wallet/db.cpp')
-rw-r--r--src/wallet/db.cpp2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/wallet/db.cpp b/src/wallet/db.cpp
index d0fe51801e..e9060ce97d 100644
--- a/src/wallet/db.cpp
+++ b/src/wallet/db.cpp
@@ -72,7 +72,7 @@ BerkeleyEnvironment* GetWalletEnv(const fs::path& wallet_path, std::string& data
database_filename = "wallet.dat";
}
LOCK(cs_db);
- // Note: An ununsed temporary BerkeleyEnvironment object may be created inside the
+ // Note: An unused temporary BerkeleyEnvironment object may be created inside the
// emplace function if the key already exists. This is a little inefficient,
// but not a big concern since the map will be changed in the future to hold
// pointers instead of objects, anyway.