File tree Expand file tree Collapse file tree 1 file changed +0
-12
lines changed Expand file tree Collapse file tree 1 file changed +0
-12
lines changed Original file line number Diff line number Diff line change @@ -474,38 +474,26 @@ def _derive_public_child_key_by_index(
474474 @property
475475 def root_xprivate_key (self ):
476476 return self ._root_xprivate_key
477- # return None if not self._root_xprivate_key else self._root_xprivate_key.hex()
478477
479478 @property
480479 def root_public_key (self ):
481480 return self ._root_public_key
482- # return None if not self._root_public_key else self._root_public_key.hex()
483481
484482 @property
485483 def root_chain_code (self ):
486484 return self ._root_chain_code
487- # return None if not self._root_chain_code else self._root_chain_code.hex()
488485
489486 @property
490487 def xprivate_key (self ):
491488 return self ._xprivate_key
492- # return None if not self._xprivate_key else self._xprivate_key.hex()
493489
494490 @property
495491 def public_key (self ):
496492 return self ._public_key
497- # return None if not self._public_key else self._public_key.hex()
498493
499494 @property
500495 def chain_code (self ):
501496 return self ._chain_code
502- # return None if not self._chain_code else self._chain_code.hex()
503-
504- # def to_extended_signing_key(self) -> BIP32ED25519PrivateKey:
505- # """
506- # Generate a extended signing key to sign transactions
507- # """
508- # return BIP32ED25519PrivateKey(self._xprivate_key, self._chain_code)
509497
510498 @staticmethod
511499 def generate_mnemonic (language : str = "english" , strength : int = 256 ) -> str :
You can’t perform that action at this time.
0 commit comments