1
0
mirror of https://github.com/bitcoinbook/bitcoinbook synced 2024-11-25 01:18:18 +00:00

whitespace fixes to placate flake8

This commit is contained in:
cclauss 2018-02-03 01:33:46 +01:00
parent 6c980afdd0
commit ecd13d3523
4 changed files with 11 additions and 12 deletions

View File

@ -8,6 +8,7 @@ from pycoin.key.validate import is_address_valid, is_wif_valid
from pycoin.services import spendables_for_address
from pycoin.tx.tx_utils import create_signed_tx
def get_address(which):
while 1:
print("enter the %s address=> " % which, end='')
@ -17,6 +18,7 @@ def get_address(which):
return address
print("invalid address, please try again")
src_address = get_address("source")
spendables = spendables_for_address(src_address)
print(spendables)

View File

@ -32,6 +32,3 @@ for txid in transactions:
block_value = block_value + tx_value
print("Total value in block: ", block_value)