Merge #3862 from ethcore/jg-fix-contracts-send

Fix typo in method call (broken contract interface)
This commit is contained in:
Jannis Redmann 2016-12-15 17:54:42 +01:00 committed by GitHub
commit 29457c11ef
1 changed files with 1 additions and 1 deletions

View File

@ -458,7 +458,7 @@ export default class Contract {
}
try {
this.sendData(subscriptionId, null, this.parseEventLogs(logs));
this._sendData(subscriptionId, null, this.parseEventLogs(logs));
} catch (error) {
console.error('_sendSubscriptionChanges', error);
}