Fix comment for NetworkLocalUtxo trait

This commit is contained in:
thunderbiscuit 2022-06-22 14:48:56 -03:00
parent 28a9b302d5
commit fad5e3cefd
No known key found for this signature in database
GPG Key ID: 88253696EB836462

View File

@ -190,7 +190,8 @@ pub struct LocalUtxo {
is_spent: bool, is_spent: bool,
} }
/// Trait used to convert a script to an address using the wallet network // This trait is used to convert the bdk TxOut type with field `script_pubkey: Script`
// into the bdk-ffi TxOut type which has a field `address: String` instead
trait NetworkLocalUtxo { trait NetworkLocalUtxo {
fn from_utxo(x: &bdk::LocalUtxo, network: Network) -> LocalUtxo; fn from_utxo(x: &bdk::LocalUtxo, network: Network) -> LocalUtxo;
} }