| 8 | use super::query_response::{Response, ResponseStatus}; |
| 9 | |
| 10 | pub enum ArgType { |
| 11 | DepositorPublicKey(PublicKey), |
| 12 | ChainAddress(Address), |
| 13 | OutPoint(OutPoint), |
| 14 | Satoshis(Amount), |
| 15 | EcdsaSignature(ecdsa::Signature), |
| 16 | TaprootSignature(taproot::Signature), |
| 17 | } |
| 18 | |
| 19 | pub fn validate( |
| 20 | matches: &ArgMatches, |
nothing calls this directly
no outgoing calls
no test coverage detected