mirror of
https://github.com/status-im/status-react.git
synced 2025-02-17 05:16:46 +00:00
* 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 amount;
|
||||
|
||||
try {
|
||||
amount = params.args[1];
|
||||
amount = params.args[1] || "0";
|
||||
txData = {
|
||||
to: contactAddress,
|
||||
value: web3.toWei(amount) || 0
|
||||
|
Loading…
x
Reference in New Issue
Block a user