Fix no data sent in TxQueue dapp (#4502)
* Fix wrong PropType req for Embedded Signer * Fix wrong data for tx #4499
This commit is contained in:
parent
a7e6d8727a
commit
515f30eea9
@ -259,7 +259,7 @@ export class LocalTransaction extends BaseTransaction {
|
|||||||
to: transaction.to,
|
to: transaction.to,
|
||||||
nonce: transaction.nonce,
|
nonce: transaction.nonce,
|
||||||
value: transaction.value,
|
value: transaction.value,
|
||||||
data: transaction.data,
|
data: transaction.input,
|
||||||
gasPrice, gas
|
gasPrice, gas
|
||||||
};
|
};
|
||||||
|
|
||||||
|
@ -37,7 +37,7 @@ class Embedded extends Component {
|
|||||||
startConfirmRequest: PropTypes.func.isRequired,
|
startConfirmRequest: PropTypes.func.isRequired,
|
||||||
startRejectRequest: PropTypes.func.isRequired
|
startRejectRequest: PropTypes.func.isRequired
|
||||||
}).isRequired,
|
}).isRequired,
|
||||||
externalLink: PropTypes.string.isRequired,
|
externalLink: PropTypes.string,
|
||||||
gasLimit: PropTypes.object.isRequired,
|
gasLimit: PropTypes.object.isRequired,
|
||||||
isTest: PropTypes.bool.isRequired,
|
isTest: PropTypes.bool.isRequired,
|
||||||
signer: PropTypes.shape({
|
signer: PropTypes.shape({
|
||||||
|
Loading…
Reference in New Issue
Block a user