mirror of
https://github.com/sparrowwallet/sparrow.git
synced 2024-11-05 05:46: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) {
|
public void copyId(ActionEvent event) {
|
||||||
ClipboardContent content = new ClipboardContent();
|
ClipboardContent content = new ClipboardContent();
|
||||||
content.putString(headersForm.getTransaction().getTxId().toString());
|
content.putString(headersForm.getTransaction().calculateTxId(false).toString());
|
||||||
Clipboard.getSystemClipboard().setContent(content);
|
Clipboard.getSystemClipboard().setContent(content);
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
Loading…
Reference in a new issue