In lib/services/portico-gateway.js, `PorticoGateway.submitTransaction`, we have this block: ``` try { callback(null, {header: h, body: gatewayResult['Ver1.0'][0].Transaction[0]}); } catch (e) { callback(null, {header: h}); } ``` As you can see, any errors thrown in the callback are swallowed and the callback is then run a 2nd time. What does the try/catch accomplish here?
In lib/services/portico-gateway.js,
PorticoGateway.submitTransaction, we have this block:As you can see, any errors thrown in the callback are swallowed and the callback is then run a 2nd time. What does the try/catch accomplish here?