Commit f199215c authored by ninabreznik's avatar ninabreznik

Make Dont show this again work

parent f2cd335d
...@@ -63,7 +63,7 @@ TxRunner.prototype.execute = function (args, callback) { ...@@ -63,7 +63,7 @@ TxRunner.prototype.execute = function (args, callback) {
if (args.useCall) { if (args.useCall) {
tx.gas = gasLimit tx.gas = gasLimit
if (true) { if (!self.config.get('doNotShowAgain')) {
self.detectNetwork((err,network) => { self.detectNetwork((err,network) => {
if (err) { if (err) {
console.log(err) console.log(err)
...@@ -111,7 +111,7 @@ TxRunner.prototype.execute = function (args, callback) { ...@@ -111,7 +111,7 @@ TxRunner.prototype.execute = function (args, callback) {
tx.gas = gasEstimation tx.gas = gasEstimation
if (true) { if (!self.config.get('doNotShowAgain')) {
self.detectNetwork((err,network) => { self.detectNetwork((err,network) => {
if (err) { if (err) {
...@@ -245,14 +245,14 @@ function remixdDialog (tx, self) { ...@@ -245,14 +245,14 @@ function remixdDialog (tx, self) {
</div> </div>
<div class=${css.checkbox}> <div class=${css.checkbox}>
<div><input type="checkbox" onchange=${() => updateConfig(self)}></div> <div><input type="checkbox" onchange=${() => updateConfig(self)}></div>
<span class="${css.checkboxText}">Never ask me to confirm again (this will be not be persisted)</span> <span class="${css.checkboxText}">Don't ask me to confirm again</span>
</div> </div>
</div> </div>
` `
} }
function updateConfig (self) { function updateConfig (self) {
self.config.set('doNotShowAgain', !self.get('doNotShowAgain')) self.config.set('doNotShowAgain', !self.config.get('doNotShowAgain'))
} }
module.exports = TxRunner module.exports = TxRunner
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment