From bb0313d0602c15a18aa392b741847317cdfc34d5 Mon Sep 17 00:00:00 2001 From: Lawrence Tran Date: Fri, 29 Jun 2018 13:09:50 -0500 Subject: [PATCH] Fix typo (#1837) The base64 encoding for 'abcd' is incorrect for the python decoding examples. --- docs/getting-started.md | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/docs/getting-started.md b/docs/getting-started.md index 2d2c77b16..1fa1405f2 100644 --- a/docs/getting-started.md +++ b/docs/getting-started.md @@ -125,8 +125,8 @@ The result should look like: Note the `value` in the result (`YWJjZA==`); this is the base64-encoding of the ASCII of `abcd`. You can verify this in a python 2 shell by -running `"61626364".decode('base64')` or in python 3 shell by running -`import codecs; codecs.decode("61626364", 'base64').decode('ascii')`. +running `"YWJjZA==".decode('base64')` or in python 3 shell by running +`import codecs; codecs.decode("YWJjZA==", 'base64').decode('ascii')`. Stay tuned for a future release that [makes this output more human-readable](https://github.com/tendermint/tendermint/issues/1794).