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
Most methods in the market keeper currently returns the touple (*sdk.Result, error). The *sdk.Result is mostly used to return events that are already present in the context. This results in the occasional duplication of events being emitted (#130).
Refactor the market keeper to only return an error and any values that may already be present, and let the msg_server handle extraction of events from the context object.
The text was updated successfully, but these errors were encountered:
Most methods in the market keeper currently returns the touple
(*sdk.Result, error)
. The*sdk.Result
is mostly used to return events that are already present in thecontext
. This results in the occasional duplication of events being emitted (#130).Refactor the market keeper to only return an error and any values that may already be present, and let the
msg_server
handle extraction of events from thecontext
object.The text was updated successfully, but these errors were encountered: