We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent bc54441 commit d99f537Copy full SHA for d99f537
lightning/src/routing/utxo.rs
@@ -125,7 +125,7 @@ pub struct UtxoFuture {
125
126
/// A trivial implementation of [`UtxoLookup`] which is used to call back into the network graph
127
/// once we have a concrete resolution of a request.
128
-struct UtxoResolver(Result<TxOut, UtxoLookupError>);
+pub struct UtxoResolver(Result<TxOut, UtxoLookupError>);
129
impl UtxoLookup for UtxoResolver {
130
fn get_utxo(&self, _genesis_hash: &BlockHash, _short_channel_id: u64) -> UtxoResult {
131
UtxoResult::Sync(self.0.clone())
0 commit comments