(self, message, privateKey)
| 1550 | } |
| 1551 | |
| 1552 | def sign_message(self, message, privateKey): |
| 1553 | return self.sign_hash(self.hash_message(message), privateKey[-64:]) |
| 1554 | |
| 1555 | def construct_phantom_agent(self, hash, isTestnet=True): |
| 1556 | source = 'b' if (isTestnet) else 'a' |
no test coverage detected