Skip to content

Commit d99f537

Browse files
committed
Make trivial impl of UtxoLookup public
1 parent bc54441 commit d99f537

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

lightning/src/routing/utxo.rs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -125,7 +125,7 @@ pub struct UtxoFuture {
125125

126126
/// A trivial implementation of [`UtxoLookup`] which is used to call back into the network graph
127127
/// once we have a concrete resolution of a request.
128-
struct UtxoResolver(Result<TxOut, UtxoLookupError>);
128+
pub struct UtxoResolver(Result<TxOut, UtxoLookupError>);
129129
impl UtxoLookup for UtxoResolver {
130130
fn get_utxo(&self, _genesis_hash: &BlockHash, _short_channel_id: u64) -> UtxoResult {
131131
UtxoResult::Sync(self.0.clone())

0 commit comments

Comments
 (0)