Skip to content

Commit

Permalink
Implement accepted_receiver_amount_sat merge
Browse files Browse the repository at this point in the history
  • Loading branch information
danielgranhao committed Jan 1, 2025
1 parent 2f6740a commit fc151c7
Showing 1 changed file with 3 additions and 0 deletions.
3 changes: 3 additions & 0 deletions lib/core/src/sync/model/data.rs
Original file line number Diff line number Diff line change
Expand Up @@ -34,6 +34,9 @@ impl ChainSyncData {
"payer_amount_sat" => self.payer_amount_sat = other.payer_amount_sat,
"receiver_amount_sat" => self.receiver_amount_sat = other.receiver_amount_sat,
"accept_zero_conf" => self.accept_zero_conf = other.accept_zero_conf,
"accepted_receiver_amount_sat" => {
self.accepted_receiver_amount_sat = other.accepted_receiver_amount_sat
}
_ => continue,
}
}
Expand Down

0 comments on commit fc151c7

Please sign in to comment.