dash: Add tests.

This commit is contained in:
tecnovert
2022-10-21 00:37:45 +02:00
parent 7298867e18
commit 4866ff4db8
2 changed files with 559 additions and 0 deletions

View File

@@ -16,3 +16,7 @@ class DASHInterface(BTCInterface):
def initialiseWallet(self, key):
raise ValueError('Load seed with with -hdseed daemon argument')
def withdrawCoin(self, value, addr_to, subfee):
params = [addr_to, value, '', '', subfee]
return self.rpc_callback('sendtoaddress', params)