aboutsummaryrefslogtreecommitdiff
path: root/src/core_read.cpp
diff options
context:
space:
mode:
authorIkko Ashimine <eltociear@gmail.com>2020-12-24 22:37:17 +0900
committerfanquake <fanquake@gmail.com>2021-01-04 12:31:31 +0800
commit1112035d32ffe73a4522226c8cb2f6a5878d3ada (patch)
tree7f5021ab6d285213918da66a9aaefa873ae4a5bc /src/core_read.cpp
parente8640849c775efcf202dbd34736fed8d61379c49 (diff)
downloadbitcoin-1112035d32ffe73a4522226c8cb2f6a5878d3ada.tar.xz
doc: fix various typos
Co-authored-by: Peter Yordanov <ppyordanov@yahoo.com>
Diffstat (limited to 'src/core_read.cpp')
-rw-r--r--src/core_read.cpp2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/core_read.cpp b/src/core_read.cpp
index 7687a86185..b5fc93886d 100644
--- a/src/core_read.cpp
+++ b/src/core_read.cpp
@@ -128,7 +128,7 @@ static bool DecodeTx(CMutableTransaction& tx, const std::vector<unsigned char>&
{
// General strategy:
// - Decode both with extended serialization (which interprets the 0x0001 tag as a marker for
- // the presense of witnesses) and with legacy serialization (which interprets the tag as a
+ // the presence of witnesses) and with legacy serialization (which interprets the tag as a
// 0-input 1-output incomplete transaction).
// - Restricted by try_no_witness (which disables legacy if false) and try_witness (which
// disables extended if false).