A request to sign data using your account:
diff --git a/js/src/views/Signer/components/TransactionMainDetails/transactionMainDetails.js b/js/src/views/Signer/components/TransactionMainDetails/transactionMainDetails.js
index 812d1fb35..2d8627c57 100644
--- a/js/src/views/Signer/components/TransactionMainDetails/transactionMainDetails.js
+++ b/js/src/views/Signer/components/TransactionMainDetails/transactionMainDetails.js
@@ -31,7 +31,7 @@ export default class TransactionMainDetails extends Component {
fromBalance: PropTypes.object,
gasStore: PropTypes.object,
id: PropTypes.object.isRequired,
- isTest: PropTypes.bool.isRequired,
+ netVersion: PropTypes.string.isRequired,
totalValue: PropTypes.object.isRequired,
transaction: PropTypes.object.isRequired,
value: PropTypes.object.isRequired
@@ -50,7 +50,7 @@ export default class TransactionMainDetails extends Component {
}
render () {
- const { children, from, fromBalance, gasStore, isTest, transaction } = this.props;
+ const { children, from, fromBalance, gasStore, netVersion, transaction } = this.props;
return (
@@ -59,7 +59,7 @@ export default class TransactionMainDetails extends Component {
diff --git a/js/src/views/Signer/components/TransactionPending/transactionPending.js b/js/src/views/Signer/components/TransactionPending/transactionPending.js
index 4030eb828..98be91d5f 100644
--- a/js/src/views/Signer/components/TransactionPending/transactionPending.js
+++ b/js/src/views/Signer/components/TransactionPending/transactionPending.js
@@ -39,7 +39,7 @@ export default class TransactionPending extends Component {
gasLimit: PropTypes.object,
id: PropTypes.object.isRequired,
isSending: PropTypes.bool.isRequired,
- isTest: PropTypes.bool.isRequired,
+ netVersion: PropTypes.string.isRequired,
nonce: PropTypes.number,
onConfirm: PropTypes.func.isRequired,
onReject: PropTypes.func.isRequired,
@@ -87,7 +87,7 @@ export default class TransactionPending extends Component {
}
renderTransaction () {
- const { className, focus, id, isSending, isTest, store, transaction } = this.props;
+ const { className, focus, id, isSending, netVersion, store, transaction } = this.props;
const { totalValue } = this.state;
const { from, value } = transaction;
@@ -101,7 +101,7 @@ export default class TransactionPending extends Component {
fromBalance={ fromBalance }
gasStore={ this.gasStore }
id={ id }
- isTest={ isTest }
+ netVersion={ netVersion }
totalValue={ totalValue }
transaction={ transaction }
value={ value } />
diff --git a/js/src/views/Signer/components/TxHashLink/txHashLink.js b/js/src/views/Signer/components/TxHashLink/txHashLink.js
index be92828c1..00f9952d5 100644
--- a/js/src/views/Signer/components/TxHashLink/txHashLink.js
+++ b/js/src/views/Signer/components/TxHashLink/txHashLink.js
@@ -22,18 +22,19 @@ export default class TxHashLink extends Component {
static propTypes = {
children: PropTypes.node,
className: PropTypes.string,
- isTest: PropTypes.bool.isRequired,
+ netVersion: PropTypes.string.isRequired,
txHash: PropTypes.string.isRequired
}
render () {
- const { children, className, isTest, txHash } = this.props;
+ const { children, className, netVersion, txHash } = this.props;
return (