mirror of
https://github.com/sparrowwallet/sparrow.git
synced 2024-11-04 13:26:44 +00:00
recalculate txid before copying
This commit is contained in:
parent
c0ca74ce6a
commit
555e5ecfb8
1 changed files with 1 additions and 1 deletions
|
@ -805,7 +805,7 @@ public class HeadersController extends TransactionFormController implements Init
|
|||
|
||||
public void copyId(ActionEvent event) {
|
||||
ClipboardContent content = new ClipboardContent();
|
||||
content.putString(headersForm.getTransaction().getTxId().toString());
|
||||
content.putString(headersForm.getTransaction().calculateTxId(false).toString());
|
||||
Clipboard.getSystemClipboard().setContent(content);
|
||||
}
|
||||
|
||||
|
|
Loading…
Reference in a new issue