Skip to content

Commit

Permalink
modify the from_db_transfer
Browse files Browse the repository at this point in the history
  • Loading branch information
GylmarGonzalez committed Dec 15, 2024
1 parent 086ba71 commit b91302d
Showing 1 changed file with 4 additions and 1 deletion.
5 changes: 4 additions & 1 deletion src/wallet/offline.rs
Original file line number Diff line number Diff line change
Expand Up @@ -1028,7 +1028,10 @@ impl Transfer {
recipient_id: x.recipient_id.clone(),
receive_utxo: td.receive_utxo,
change_utxo: td.change_utxo,
expiration: td.expiration,
// before to branch issue37
//expiration: td.expiration,
// after to branch issue37
expiration: td.expiration.map(|e| Some((e, td.exact_expiry.unwrap()))),
transport_endpoints,
}
}
Expand Down

0 comments on commit b91302d

Please sign in to comment.