(&self)
| 400 | let consensus_pub = consensus_priv_key.public_key(); |
| 401 | |
| 402 | let node_priv_key = key_paths |
| 403 | .node_private_key() |
| 404 | .map_err(|e| RpcError::KeyStoreError(format!("Failed to read node key: {}", e)))?; |
| 405 | let node_pub = node_priv_key.public_key(); |
| 406 | |
| 407 | let req = DepositRequest { |
| 408 | node_pubkey: node_pub.clone(), |
| 409 | consensus_pubkey: consensus_pub.clone(), |
| 410 | withdrawal_credentials, |
| 411 | amount, |
nothing calls this directly
no outgoing calls
no test coverage detected