We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 3420c54 commit 09cf4f4Copy full SHA for 09cf4f4
gui/src/installer/view.rs
@@ -414,7 +414,19 @@ pub fn import_descriptor<'a>(
414
} else {
415
None
416
})
417
- .push(col_descriptor),
+ .push(col_descriptor)
418
+ .push_maybe(if change_network {
419
+ // only show message when importing a descriptor
420
+ Some(Row::new().push(text(
421
+ "After creating the wallet, \
422
+ you will need to perform a rescan of \
423
+ the blockchain in order to see your \
424
+ coins and past transactions. This can \
425
+ be done in Settings > Bitcoin Core.",
426
+ )))
427
+ } else {
428
+ None
429
+ }),
430
)
431
.push(
432
if imported_descriptor.value.is_empty() || !imported_descriptor.valid {
0 commit comments