mirror of https://github.com/status-im/op-geth.git
push data instead of assign
This commit is contained in:
parent
3bc238b1ce
commit
c95dfec5e4
23
main.js
23
main.js
|
@ -1,6 +1,6 @@
|
||||||
(function(window) {
|
(function(window) {
|
||||||
function isPromise(o) {
|
function isPromise(o) {
|
||||||
return typeof o === "object" && o.then
|
return o instanceof Promise
|
||||||
}
|
}
|
||||||
|
|
||||||
var eth = {
|
var eth = {
|
||||||
|
@ -111,7 +111,7 @@
|
||||||
return Promise.all(promises).then(function() {
|
return Promise.all(promises).then(function() {
|
||||||
return new Promise(function(resolve, reject) {
|
return new Promise(function(resolve, reject) {
|
||||||
params.data = params.data.join("");
|
params.data = params.data.join("");
|
||||||
eth.provider.send({call: "transact", args: [params]}, function(data) {
|
eth.provider.send({call: "transact", args: ["0x"+params]}, function(data) {
|
||||||
if(data[1])
|
if(data[1])
|
||||||
reject(data[0]);
|
reject(data[0]);
|
||||||
else
|
else
|
||||||
|
@ -395,7 +395,7 @@
|
||||||
if(this.provider !== undefined) {
|
if(this.provider !== undefined) {
|
||||||
this.provider.send(data);
|
this.provider.send(data);
|
||||||
} else {
|
} else {
|
||||||
this.queued = data;
|
this.queued.push(data);
|
||||||
}
|
}
|
||||||
};
|
};
|
||||||
|
|
||||||
|
@ -564,20 +564,3 @@
|
||||||
|
|
||||||
window.eth = eth;
|
window.eth = eth;
|
||||||
})(this);
|
})(this);
|
||||||
|
|
||||||
/*
|
|
||||||
function eth.provider.send(data, cb) {
|
|
||||||
data.seed = g_seed;
|
|
||||||
if(cb) {
|
|
||||||
eth._callbacks[data.seed] = cb;
|
|
||||||
}
|
|
||||||
|
|
||||||
if(data.args === undefined) {
|
|
||||||
data.args = [];
|
|
||||||
}
|
|
||||||
|
|
||||||
g_seed++;
|
|
||||||
|
|
||||||
window._messagingAdapter.call(this, data)
|
|
||||||
}
|
|
||||||
*/
|
|
||||||
|
|
Loading…
Reference in New Issue