* fix #1888 ether amount not updated in /send suggestion if it was initially undefined * dummy change to trigger jenkins rebuild * another dummy commit to trigger jenkins build
This commit is contained in:
parent
3f2416fafd
commit
465b4eef9c
|
@ -51,8 +51,9 @@ function amountParameterBox(params, context) {
|
||||||
|
|
||||||
var txData;
|
var txData;
|
||||||
var amount;
|
var amount;
|
||||||
|
|
||||||
try {
|
try {
|
||||||
amount = params.args[1];
|
amount = params.args[1] || "0";
|
||||||
txData = {
|
txData = {
|
||||||
to: contactAddress,
|
to: contactAddress,
|
||||||
value: web3.toWei(amount) || 0
|
value: web3.toWei(amount) || 0
|
||||||
|
|
Loading…
Reference in New Issue