Fix suggested gas price in trasaction for ui production build (#222)
* use string version of bignumber when converting gasPrice to hex * update chromedriver version
This commit is contained in:
parent
d577a71096
commit
1d79cf82f3
@ -4,9 +4,9 @@
|
|||||||
"license": "MIT",
|
"license": "MIT",
|
||||||
"private": true,
|
"private": true,
|
||||||
"devDependencies": {
|
"devDependencies": {
|
||||||
"selenium-webdriver": "3.6.0",
|
"chromedriver": "^77.0.0",
|
||||||
"mocha": "^5.2.0",
|
"mocha": "^5.2.0",
|
||||||
"chromedriver": "76.0.0"
|
"selenium-webdriver": "3.6.0"
|
||||||
},
|
},
|
||||||
"scripts": {
|
"scripts": {
|
||||||
"lint": "eslint . --ignore-path ../.eslintignore"
|
"lint": "eslint . --ignore-path ../.eslintignore"
|
||||||
|
@ -60,7 +60,7 @@ class GasPriceStore {
|
|||||||
|
|
||||||
@computed
|
@computed
|
||||||
get gasPriceInHex() {
|
get gasPriceInHex() {
|
||||||
return toHex(this.gasPrice)
|
return toHex(this.gasPrice.toString())
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
|
Loading…
Reference in New Issue
Block a user