aboutsummaryrefslogtreecommitdiff
path: root/src/base58.h
diff options
context:
space:
mode:
authorpracticalswift <[email protected]>2017-01-18 16:15:37 +0100
committerpracticalswift <[email protected]>2017-01-27 21:22:35 +0100
commitcc16d99f1dc8305b1b255f1cc0f2b1516aa77ed0 (patch)
treee07bb46576b327b22a3b2d0c8d51b7be29a13280 /src/base58.h
parentMerge #9638: qa: Actually test assertions in pruning.py (diff)
downloaddiscoin-cc16d99f1dc8305b1b255f1cc0f2b1516aa77ed0.tar.xz
discoin-cc16d99f1dc8305b1b255f1cc0f2b1516aa77ed0.zip
[trivial] Fix typos in comments
Diffstat (limited to 'src/base58.h')
-rw-r--r--src/base58.h2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/base58.h b/src/base58.h
index cccebc9e0..3998283bb 100644
--- a/src/base58.h
+++ b/src/base58.h
@@ -147,7 +147,7 @@ public:
K GetKey() {
K ret;
if (vchData.size() == Size) {
- //if base58 encouded data not holds a ext key, return a !IsValid() key
+ // If base58 encoded data does not hold an ext key, return a !IsValid() key
ret.Decode(&vchData[0]);
}
return ret;