Example
Example of callback call when match not found.
// getOffering callback
callback(
{
type: 1, // general error
message: 'Match not found'
},
{
matchName: 'FC Home vs FC Away', // Match name
markets: [],
marketCategories: []
}
);
// calculate callback
callback(
undefined,
{
cbMarkets: []
}
);