Skip to content

Commit

Permalink
Fix #1801
Browse files Browse the repository at this point in the history
Mark change addresses as change addresses and receiving addresses as receiving addresses rather than the other way around.
  • Loading branch information
gmart7t2 authored Feb 27, 2023

Verified

This commit was created on GitHub.com and signed with GitHub’s verified signature. The key has expired.
1 parent acb8791 commit 0e2a7e6
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/subcommand/wallet.rs
Original file line number Diff line number Diff line change
@@ -136,7 +136,7 @@ fn derive_and_import_descriptor(
active: Some(true),
range: None,
next_index: None,
internal: Some(!change),
internal: Some(change),
label: None,
})?;

0 comments on commit 0e2a7e6

Please sign in to comment.