(peg_in_deposit_transaction: &PegInDepositTransaction)
| 577 | } |
| 578 | |
| 579 | pub fn generate_id(peg_in_deposit_transaction: &PegInDepositTransaction) -> String { |
| 580 | let mut hasher = Sha256::new(); |
| 581 | |
| 582 | hasher.update(peg_in_deposit_transaction.tx().compute_txid().to_string()); |
| 583 | |
| 584 | hasher.finalize().to_hex_string(Upper) |
| 585 | } |
| 586 | |
| 587 | fn create_new_connectors( |
| 588 | network: Network, |
no test coverage detected