Get Decred account key from seed.

This commit is contained in:
tecnovert
2024-04-22 20:59:22 +02:00
parent 9160bfe452
commit 761d0ca505
14 changed files with 330 additions and 32 deletions

View File

@@ -93,7 +93,7 @@ class PARTInterface(BTCInterface):
index_info = self.rpc('getinsightinfo' if int(str(version)[:2]) > 19 else 'getindexinfo')
return index_info['spentindex']
def initialiseWallet(self, key):
def initialiseWallet(self, key: bytes) -> None:
raise ValueError('TODO')
def withdrawCoin(self, value, addr_to, subfee):