aboutsummaryrefslogtreecommitdiff
path: root/src/streams.h
diff options
context:
space:
mode:
authorpracticalswift <[email protected]>2018-01-28 13:14:54 +0100
committerpracticalswift <[email protected]>2018-01-28 13:21:25 +0100
commit1340eda3b7b6ca2789d6ec65dad72ee4c3844661 (patch)
tree8e1ef2755ead1bd1de86ccc28387767326d381e0 /src/streams.h
parentMerge #12270: Update chainTxData for 0.16 (diff)
downloaddiscoin-1340eda3b7b6ca2789d6ec65dad72ee4c3844661.tar.xz
discoin-1340eda3b7b6ca2789d6ec65dad72ee4c3844661.zip
Fix typos
Diffstat (limited to 'src/streams.h')
-rw-r--r--src/streams.h2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/streams.h b/src/streams.h
index 98e25178e..9f86c4a16 100644
--- a/src/streams.h
+++ b/src/streams.h
@@ -82,7 +82,7 @@ class CVectorWriter
* @param[in] nVersionIn Serialization Version (including any flags)
* @param[in] vchDataIn Referenced byte vector to overwrite/append
* @param[in] nPosIn Starting position. Vector index where writes should start. The vector will initially
- * grow as necessary to max(nPosIn, vec.size()). So to append, use vec.size().
+ * grow as necessary to max(nPosIn, vec.size()). So to append, use vec.size().
*/
CVectorWriter(int nTypeIn, int nVersionIn, std::vector<unsigned char>& vchDataIn, size_t nPosIn) : nType(nTypeIn), nVersion(nVersionIn), vchData(vchDataIn), nPos(nPosIn)
{