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
|
anchors.centerIn: Overlay.overlay
|
||||||
title: qsTr("Sign transaction - Mint %1 token").arg(popup.tokenName)
|
title: qsTr("Sign transaction - Mint %1 token").arg(popup.tokenName)
|
||||||
tokenName: parent.name
|
tokenName: preview.name
|
||||||
accountName: parent.accountName
|
accountName: preview.accountName
|
||||||
networkName: parent.chainName
|
networkName: preview.chainName
|
||||||
feeText: root.feeText
|
feeText: root.feeText
|
||||||
errorText: root.errorText
|
errorText: root.errorText
|
||||||
isFeeLoading: root.isFeeLoading
|
isFeeLoading: root.isFeeLoading
|
||||||
|
|
||||||
onOpened: {
|
onOpened: {
|
||||||
root.setFeeLoading()
|
root.setFeeLoading()
|
||||||
root.signMintTransactionOpened(parent.chainId, d.accountAddress)
|
root.signMintTransactionOpened(preview.chainId, d.accountAddress)
|
||||||
}
|
}
|
||||||
onCancelClicked: close()
|
onCancelClicked: close()
|
||||||
onSignTransactionClicked: parent.signMintTransaction()
|
onSignTransactionClicked: preview.signMintTransaction()
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
Loading…
x
Reference in New Issue
Block a user