Cut pubkeys now does in 'npub' format, for easy sharing and pasting into posts

This commit is contained in:
Mike Dilger 2023-01-20 09:08:26 +13:00
parent 5729521fad
commit 5a015eebe8

View File

@ -405,7 +405,7 @@ impl GossipUi {
.on_hover_text("Copy Public Key")
.clicked()
{
ui.output().copied_text = person.pubkey.0.to_owned();
ui.output().copied_text = person.pubkey.try_as_bech32_string().unwrap();
}
}
});