Skip to content

Commit

Permalink
Merge pull request #66 from crisdut/fix/strict-decode-order
Browse files Browse the repository at this point in the history
Fix struct fields order
  • Loading branch information
dr-orlovsky authored Jan 17, 2023
2 parents 598f8d2 + 4f81745 commit e7e589a
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions src/bus/ctl.rs
Original file line number Diff line number Diff line change
Expand Up @@ -196,9 +196,6 @@ pub struct AcceptChannelFrom {
/// Client identifier to report about the progress
pub report_to: Option<ServiceId>,

/// Request received from a remote peer to open channel
pub channel_req: OpenChannel,

/// Channel policies
pub policy: Policy,

Expand All @@ -210,6 +207,9 @@ pub struct AcceptChannelFrom {

/// Channel local keyset
pub local_keys: LocalKeyset,

/// Request received from a remote peer to open channel
pub channel_req: OpenChannel,
}

/// Request information about constructing funding transaction
Expand Down

0 comments on commit e7e589a

Please sign in to comment.