+ tooltips for the main navigation

* changed logo to official one
* slightly increase transaction fee
This commit is contained in:
Taegus
2018-12-18 18:31:29 +01:00
parent a6231ce16a
commit 8578898b04
6 changed files with 10 additions and 8 deletions

View File

@@ -45,7 +45,7 @@ class Blockchain {
if (error) {
clbError(error);
} else {
var usedGas = result;
var usedGas = result + 1;
web3Local.eth.getGasPrice(function( error, result ) {
if (error) {
clbError(error);
@@ -81,7 +81,7 @@ class Blockchain {
if (error) {
clbError(error);
} else {
RawTransaction.gas = result;
RawTransaction.gas = result + 1;
web3Local.eth.getGasPrice(function( error, result ) {
if (error) {
clbError(error);

View File

@@ -52,7 +52,6 @@ class SendTransaction {
resetSendForm() {
if (EthoMainGUI.getAppState() == "send") {
$("#sendFromAddress").val("");
$("#sendToAddress").val("");
$("#sendAmmount").val(0);
}