OSDN Git Service

cf682b598c0202c5a996a1a8fe25f8b425b64b93
[bytom/bytom-spanner.git] / btmsender / btmsender.py
1 from . import validation
2 from . import transaction
3
4
5 def sender():
6     node_address, file_path, account_id, password, output_count, use_unconfirmed, time_range = validation.validate_input()
7     btmsender = \
8         transaction.BTMSender(node_address, file_path, account_id, password, output_count, use_unconfirmed, time_range)
9     btmsender.handle_input()