cores: Update DASH version to 21.1

This commit is contained in:
tecnovert
2024-10-03 14:28:24 +02:00
parent 1209d1b269
commit d097846756
5 changed files with 9 additions and 32 deletions

View File

@@ -367,7 +367,7 @@ class BTCInterface(Secp256k1Interface):
wi = self.rpc_wallet('getwalletinfo')
return 'Not found' if 'hdseedid' not in wi else wi['hdseedid']
def checkExpectedSeed(self, expect_seedid) -> bool:
def checkExpectedSeed(self, expect_seedid: str) -> bool:
self._expect_seedid_hex = expect_seedid
return expect_seedid == self.getWalletSeedID()