From 683c0826e3cb1d3e336b9635fb6f28da678c057d Mon Sep 17 00:00:00 2001 From: Fabian Vogelsteller Date: Thu, 16 Mar 2017 16:36:08 +0100 Subject: [PATCH] small doc addition --- docs/web3-eth.rst | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/docs/web3-eth.rst b/docs/web3-eth.rst index 3203098..b903331 100644 --- a/docs/web3-eth.rst +++ b/docs/web3-eth.rst @@ -26,11 +26,11 @@ The ``web3-eth`` package allows you to interact with an Ethereum blockchain and Note on checksum addresses ======= -All Ethereum addresses returned by function of this package are checksum addresses. +All Ethereum addresses returned by functions of this package are returned as checksum addresses. This means some letters are uppercase and some are lowercase. Based on that it will calculate a checksum for the address and prove its correctness. -Incorrect checksum address will throw an error when passed into a function. -If you want to circumvent the checksum check you can make an address all lowercase or uppercase. +Incorrect checksum address will throw an error when passed into functions. +If you want to circumvent the checksum check you can make an address all lower- or uppercase. ------- @@ -40,7 +40,7 @@ Example .. code-block:: javascript web3.eth.getAccounts(console.log); - > ["0x11f4d0A3c12e86B4b5F39B213F7E19D048276DAe"] + > ["0x11f4d0A3c12e86B4b5F39B213F7E19D048276DAe" ,"0x85F43D8a49eeB85d32Cf465507DD71d507100C1d"] ------------------------------------------------------------------------------