mirror of
https://github.com/ethereum/go-ethereum.git
synced 2026-03-21 02:18:07 +00:00
missing semicolons
This commit is contained in:
parent
0d6479e1d6
commit
e3ad9be4c8
1 changed files with 2 additions and 2 deletions
4
main.js
4
main.js
|
|
@ -176,7 +176,7 @@
|
|||
web3.provider.send({call: property.getter}, function(err, result) {
|
||||
if (!err) {
|
||||
resolve(result);
|
||||
return
|
||||
return;
|
||||
}
|
||||
reject(err);
|
||||
});
|
||||
|
|
@ -189,7 +189,7 @@
|
|||
web3.provider.send({call: property.setter, args: args}, function (err, result) {
|
||||
if (!err) {
|
||||
resolve(result);
|
||||
return
|
||||
return;
|
||||
}
|
||||
reject(err);
|
||||
});
|
||||
|
|
|
|||
Loading…
Reference in a new issue