Test outgoing transfers

This commit is contained in:
Michał Sałaban 2018-01-31 00:22:26 +01:00
parent 323746b80a
commit 68e631ebe3
2 changed files with 324 additions and 13 deletions

View file

@ -8,8 +8,8 @@ class Daemon(object):
def height(self):
return self._backend.info()['height']
def send_transaction(self, tx):
return self._backend.send_transaction(tx.blob)
def send_transaction(self, tx, relay=True):
return self._backend.send_transaction(tx.blob, relay=relay)
def mempool(self):
return self._backend.mempool()