fixed eth_getFilterChanges

This commit is contained in:
Marek Kotewicz 2015-03-10 10:47:44 +01:00
parent b4545872a6
commit 2850bee3f6
5 changed files with 5 additions and 5 deletions

2
dist/ethereum.js vendored
View File

@ -1182,7 +1182,7 @@ var stopPolling = function (id) {
};
var ethWatch = {
startPolling: startPolling.bind(null, 'eth_getFilterchanges'),
startPolling: startPolling.bind(null, 'eth_getFilterChanges'),
stopPolling: stopPolling
};

File diff suppressed because one or more lines are too long

File diff suppressed because one or more lines are too long

View File

@ -7,7 +7,7 @@
<script type="text/javascript">
var web3 = require('web3');
web3.setProvider(new web3.providers.HttpSyncProvider());
web3.setProvider(new web3.providers.HttpProvider());
function watchBalance() {
var coinbase = web3.eth.coinbase;

View File

@ -148,7 +148,7 @@ var stopPolling = function (id) {
};
var ethWatch = {
startPolling: startPolling.bind(null, 'eth_getFilterchanges'),
startPolling: startPolling.bind(null, 'eth_getFilterChanges'),
stopPolling: stopPolling
};