mirror of
https://github.com/status-im/status-desktop.git
synced 2025-01-22 12:29:37 +00:00
fix(MintToken): Sign transaction popup was not showing correct data
Fixed params to pass to sign transaction popup: chainId, chainName and accountName.
This commit is contained in:
parent
1efef94edb
commit
cbe290a735
@ -387,19 +387,19 @@ SettingsPageLayout {
|
||||
|
||||
anchors.centerIn: Overlay.overlay
|
||||
title: qsTr("Sign transaction - Mint %1 token").arg(popup.tokenName)
|
||||
tokenName: parent.name
|
||||
accountName: parent.accountName
|
||||
networkName: parent.chainName
|
||||
tokenName: preview.name
|
||||
accountName: preview.accountName
|
||||
networkName: preview.chainName
|
||||
feeText: root.feeText
|
||||
errorText: root.errorText
|
||||
isFeeLoading: root.isFeeLoading
|
||||
|
||||
onOpened: {
|
||||
root.setFeeLoading()
|
||||
root.signMintTransactionOpened(parent.chainId, d.accountAddress)
|
||||
root.signMintTransactionOpened(preview.chainId, d.accountAddress)
|
||||
}
|
||||
onCancelClicked: close()
|
||||
onSignTransactionClicked: parent.signMintTransaction()
|
||||
onSignTransactionClicked: preview.signMintTransaction()
|
||||
}
|
||||
}
|
||||
}
|
||||
|
Loading…
x
Reference in New Issue
Block a user