aboutsummaryrefslogtreecommitdiff
path: root/src/wallet/test
diff options
context:
space:
mode:
authorDimitris Apostolou <dimitris.apostolou@icloud.com>2021-11-13 01:43:17 +0200
committerDimitris Apostolou <dimitris.apostolou@icloud.com>2021-11-13 20:05:56 +0200
commit2de1ceb2e9180d40611a6d32b3a9470c242952e0 (patch)
tree8a32ee4e07c398b32ceece5076f1c10267f67cf1 /src/wallet/test
parent5cc083cd46ad71510f56af957e2e8733c388c6f1 (diff)
downloadbitcoin-2de1ceb2e9180d40611a6d32b3a9470c242952e0.tar.xz
depends, wallet: fix typos
Diffstat (limited to 'src/wallet/test')
-rw-r--r--src/wallet/test/fuzz/notifications.cpp2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/wallet/test/fuzz/notifications.cpp b/src/wallet/test/fuzz/notifications.cpp
index 252832785b..e8b49f1220 100644
--- a/src/wallet/test/fuzz/notifications.cpp
+++ b/src/wallet/test/fuzz/notifications.cpp
@@ -100,7 +100,7 @@ FUZZ_TARGET_INIT(wallet_notifications, initialize_setup)
using Coins = std::set<std::tuple<CAmount, COutPoint>>;
std::vector<std::tuple<Coins, CBlock>> chain;
{
- // Add the inital entry
+ // Add the initial entry
chain.emplace_back();
auto& [coins, block]{chain.back()};
coins.emplace(total_amount, COutPoint{uint256::ONE, 1});