(result: SignedTxResponse)
| 132 | lighterSigner.Free(ptr) |
| 133 | |
| 134 | def decode_api_key(result: SignedTxResponse) -> Union[Tuple[str, str, None], Tuple[None, None, str]]: |
| 135 | private_key_str = decode_and_free(result.privateKey) |
| 136 | public_key_str = decode_and_free(result.publicKey) |
| 137 | error = decode_and_free(result.err) |
| 138 | return private_key_str, public_key_str, error |
| 139 | |
| 140 | def decode_tx_info(result: SignedTxResponse) -> Union[Tuple[str, str, str, None], Tuple[None, None, None, str]]: |
| 141 | tx_type = result.txType |
no test coverage detected
searching dependent graphs…