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
The app currently requires proto to be pre-compiled. This compilation process generates TS/JS code that is not valid and needs some tweaking. I currently do this manually, but it should be automated.
Changes:
add var proto = { lnrpc: {} }; to the top of lnd_pb.js
add var proto = { looprpc: {} }; to the top of loop_pb.js
add var proto = { google: { api: {} } }; to the top of annotation_pb.js
add var proto = { google: { api: {} } }; to the top of http_pb.js
Alternatively, I would like to do some further research into protobufjs to see if our usage of proto files can be improved even further.
The text was updated successfully, but these errors were encountered:
The app currently requires proto to be pre-compiled. This compilation process generates TS/JS code that is not valid and needs some tweaking. I currently do this manually, but it should be automated.
Changes:
var proto = { lnrpc: {} };
to the top oflnd_pb.js
var proto = { looprpc: {} };
to the top ofloop_pb.js
var proto = { google: { api: {} } };
to the top ofannotation_pb.js
var proto = { google: { api: {} } };
to the top ofhttp_pb.js
Alternatively, I would like to do some further research into protobufjs to see if our usage of proto files can be improved even further.
The text was updated successfully, but these errors were encountered: