mirror of
https://github.com/bitcoinbook/bitcoinbook
synced 2025-02-18 02:22:14 +00:00
whitespace fixes to placate flake8
This commit is contained in:
parent
6c980afdd0
commit
ecd13d3523
@ -8,6 +8,7 @@ from pycoin.key.validate import is_address_valid, is_wif_valid
|
|||||||
from pycoin.services import spendables_for_address
|
from pycoin.services import spendables_for_address
|
||||||
from pycoin.tx.tx_utils import create_signed_tx
|
from pycoin.tx.tx_utils import create_signed_tx
|
||||||
|
|
||||||
|
|
||||||
def get_address(which):
|
def get_address(which):
|
||||||
while 1:
|
while 1:
|
||||||
print("enter the %s address=> " % which, end='')
|
print("enter the %s address=> " % which, end='')
|
||||||
@ -17,6 +18,7 @@ def get_address(which):
|
|||||||
return address
|
return address
|
||||||
print("invalid address, please try again")
|
print("invalid address, please try again")
|
||||||
|
|
||||||
|
|
||||||
src_address = get_address("source")
|
src_address = get_address("source")
|
||||||
spendables = spendables_for_address(src_address)
|
spendables = spendables_for_address(src_address)
|
||||||
print(spendables)
|
print(spendables)
|
||||||
|
@ -32,6 +32,3 @@ for txid in transactions:
|
|||||||
block_value = block_value + tx_value
|
block_value = block_value + tx_value
|
||||||
|
|
||||||
print("Total value in block: ", block_value)
|
print("Total value in block: ", block_value)
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
Loading…
Reference in New Issue
Block a user