(self, strAccountIndex: str, strApiKeyIndex: str)
| 422 | } |
| 423 | |
| 424 | def get_lighter_private_key(self, strAccountIndex: str, strApiKeyIndex: str): |
| 425 | if not ('auths' in self.options): |
| 426 | return None |
| 427 | if not (strAccountIndex in self.options['auths']): |
| 428 | return None |
| 429 | if not (strApiKeyIndex in self.options['auths'][strAccountIndex]): |
| 430 | return None |
| 431 | if not ('lighterPrivateKey' in self.options['auths'][strAccountIndex][strApiKeyIndex]): |
| 432 | return None |
| 433 | return self.options['auths'][strAccountIndex][strApiKeyIndex]['lighterPrivateKey'] |
| 434 | |
| 435 | def pre_load_lighter_library(self, params={}): |
| 436 | """ |
no outgoing calls
no test coverage detected