fix nil gasPrice

This commit is contained in:
Roman Volosovskyi 2017-09-27 08:14:43 +02:00
parent 03b5db7053
commit cf59e6b1eb
1 changed files with 6 additions and 2 deletions

View File

@ -359,13 +359,17 @@ function validateSend(params, context) {
function handleSend(params, context) {
var val = web3.toWei(params["amount"].replace(",", "."), "ether");
var gasPrice = calculateGasPrice(params["bot-db"]["sliderValue"]);
var data = {
from: context.from,
to: params["bot-db"]["public"]["recipient"]["address"],
value: val,
gasPrice: calculateGasPrice(params["bot-db"]["sliderValue"])
value: val
};
if (gasPrice) {
data.gasPrice = gasPrice;
}
web3.eth.sendTransaction(data, function(error, hash) {
if (error) {
status.sendSignal("handler-result", {