use strings (default web3js behavior for uint)

This commit is contained in:
Richard Ramos 2019-08-29 16:28:15 -04:00
parent 2c7bee47cf
commit bd1ba449ae
1 changed files with 1 additions and 1 deletions

View File

@ -168,7 +168,7 @@ class EventSyncer {
sub.error(err);
return;
}
sub.next(toBN(result).toNumber());
sub.next(toBN(result).toString(10));
}]);
};
}