Update dependencies
This commit is contained in:
parent
1e1137a6f7
commit
afec8358d3
@ -170,7 +170,9 @@
|
|||||||
"@parity/dapp-vaults": "paritytech/dapp-vaults",
|
"@parity/dapp-vaults": "paritytech/dapp-vaults",
|
||||||
"@parity/dapp-wallet": "paritytech/dapp-wallet",
|
"@parity/dapp-wallet": "paritytech/dapp-wallet",
|
||||||
"@parity/dapp-web": "paritytech/dapp-web",
|
"@parity/dapp-web": "paritytech/dapp-web",
|
||||||
|
"@parity/etherscan": "paritytech/js-etherscan",
|
||||||
"@parity/jsonrpc": "paritytech/js-jsonrpc",
|
"@parity/jsonrpc": "paritytech/js-jsonrpc",
|
||||||
|
"@parity/ledger": "paritytech/js-ledger",
|
||||||
"@parity/shared": "paritytech/js-shared",
|
"@parity/shared": "paritytech/js-shared",
|
||||||
"@parity/ui": "paritytech/js-ui",
|
"@parity/ui": "paritytech/js-ui",
|
||||||
"isomorphic-fetch": "2.2.1",
|
"isomorphic-fetch": "2.2.1",
|
||||||
@ -186,6 +188,7 @@
|
|||||||
"react-router": "3.0.0",
|
"react-router": "3.0.0",
|
||||||
"react-tap-event-plugin": "2.0.1",
|
"react-tap-event-plugin": "2.0.1",
|
||||||
"redux": "3.6.0",
|
"redux": "3.6.0",
|
||||||
|
"solc": "ngotchac/solc-js",
|
||||||
"store": "1.3.20",
|
"store": "1.3.20",
|
||||||
"web3": "0.17.0-beta",
|
"web3": "0.17.0-beta",
|
||||||
"whatwg-fetch": "2.0.1"
|
"whatwg-fetch": "2.0.1"
|
||||||
|
@ -214,11 +214,11 @@ export default class Store {
|
|||||||
executePubsubCall = ({ api, id, from, token, params }, source) => {
|
executePubsubCall = ({ api, id, from, token, params }, source) => {
|
||||||
const callback = this._methodCallbackPost(id, from, source, token);
|
const callback = this._methodCallbackPost(id, from, source, token);
|
||||||
|
|
||||||
// TODO: enable security pubsub
|
this.provider
|
||||||
this.provider.subscribe(api, callback, params).then((v, e) => {
|
.subscribe(api, callback, params)
|
||||||
console.log('Error and result', v, e);
|
.then((result, error) => {
|
||||||
this._methodCallbackPost(id, from, source, token)(null, v);
|
this._methodCallbackPost(id, from, source, token)(null, result);
|
||||||
});
|
});
|
||||||
}
|
}
|
||||||
|
|
||||||
executeMethodCall = ({ id, from, method, params, token }, source) => {
|
executeMethodCall = ({ id, from, method, params, token }, source) => {
|
||||||
|
Loading…
Reference in New Issue
Block a user