Skip to content

Commit

Permalink
bugifx: assign 'node_id' when converting from 'GatewayDetails' to 'Te…
Browse files Browse the repository at this point in the history
…stNode' (#5143)
  • Loading branch information
jstuczyn authored Nov 18, 2024
1 parent 35343b5 commit 6dc9b79
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion nym-api/src/support/storage/models.rs
Original file line number Diff line number Diff line change
Expand Up @@ -87,7 +87,7 @@ pub struct GatewayDetails {
impl From<GatewayDetails> for TestNode {
fn from(value: GatewayDetails) -> Self {
TestNode {
node_id: None,
node_id: Some(value.node_id),
identity_key: Some(value.identity),
}
}
Expand Down

0 comments on commit 6dc9b79

Please sign in to comment.