You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
When you call watchEvents it will give you an object in return with two property start and stop.
But in that object start property is undefined.
in return, there is a call for bindListener function instead just returning the reference of the bindListener function at line no 133 under file src/lib/core/Contract.js
return{start: bindListener(),//here additional call to the bindListener functionstop: ()=>{if(!listener)return;clearInterval(listener);listener=false;}}
The text was updated successfully, but these errors were encountered:
When you call watchEvents it will give you an object in return with two property
start
andstop
.But in that object
start
property isundefined
.in return, there is a call for
bindListener
function instead just returning the reference of thebindListener
function at line no 133 under filesrc/lib/core/Contract.js
The text was updated successfully, but these errors were encountered: