aboutsummaryrefslogtreecommitdiff
path: root/src/rpc
diff options
context:
space:
mode:
authorMarcoFalke <falke.marco@gmail.com>2020-05-27 10:15:05 -0400
committerMarcoFalke <falke.marco@gmail.com>2020-05-27 12:37:08 -0400
commitfab893e0caf510d4836a20194892ef9c71426c51 (patch)
treeb1da864ab953501de224c2874f30b65754e4703b /src/rpc
parent793e0ff22cbace2a0fbe1e4a2e88a7bc6bf44502 (diff)
downloadbitcoin-fab893e0caf510d4836a20194892ef9c71426c51.tar.xz
doc: Fix unrelated typos reported by codespell
Diffstat (limited to 'src/rpc')
-rw-r--r--src/rpc/mining.cpp2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/rpc/mining.cpp b/src/rpc/mining.cpp
index 3612f14bbf..3db0cb04ed 100644
--- a/src/rpc/mining.cpp
+++ b/src/rpc/mining.cpp
@@ -179,7 +179,7 @@ static bool getScriptFromDescriptor(const std::string& descriptor, CScript& scri
throw JSONRPCError(RPC_INVALID_ADDRESS_OR_KEY, strprintf("Cannot derive script without private keys"));
}
- // Combo desriptors can have 2 or 4 scripts, so we can't just check scripts.size() == 1
+ // Combo descriptors can have 2 or 4 scripts, so we can't just check scripts.size() == 1
CHECK_NONFATAL(scripts.size() > 0 && scripts.size() <= 4);
if (scripts.size() == 1) {