From 7ff780c4bc97e082b133d33e1b34774fa49803c9 Mon Sep 17 00:00:00 2001 From: Spl3en Date: Thu, 23 May 2019 11:08:56 +0200 Subject: [PATCH] Fix a minor typo --- references/python-sdk.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/references/python-sdk.md b/references/python-sdk.md index 775d55d..7a91b13 100644 --- a/references/python-sdk.md +++ b/references/python-sdk.md @@ -224,7 +224,7 @@ You can load an existing EOA by calling `load` function. After creation, the address and private Key can be looked up. ```python -# Loads a wallet from a key store file +# Loads a wallet from a private key wallet = KeyWallet.load(TEST_PRIVATE_KEY) # bytes of the private key print("address: ", wallet.get_address()) # Returns an address print("private key: ", wallet.get_private_key()) # Returns a private key