Skip to content

Commit

Permalink
msggen: Switch signatures to string instead of bytes
Browse files Browse the repository at this point in the history
  • Loading branch information
cdecker authored and ShahanaFarooqui committed May 5, 2023
1 parent ef9e0fc commit acc3bb2
Show file tree
Hide file tree
Showing 5 changed files with 5 additions and 5 deletions.
2 changes: 1 addition & 1 deletion cln-grpc/proto/node.proto

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

2 changes: 1 addition & 1 deletion cln-rpc/src/model.rs

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

2 changes: 1 addition & 1 deletion contrib/msggen/msggen/gen/grpc.py
Original file line number Diff line number Diff line change
Expand Up @@ -16,7 +16,7 @@
'number': 'double',
'pubkey': 'bytes',
'short_channel_id': 'string',
'signature': 'bytes',
'signature': 'string',
'string': 'string',
'txid': 'bytes',
'u8': 'uint32', # Yep, this is the smallest integer type in grpc...
Expand Down
2 changes: 1 addition & 1 deletion contrib/msggen/msggen/gen/rust.py
Original file line number Diff line number Diff line change
Expand Up @@ -25,7 +25,7 @@
'number': 'f64',
'pubkey': 'PublicKey',
'short_channel_id': 'ShortChannelId',
'signature': 'Vec<u8>',
'signature': 'String',
'string': 'String',
'txid': 'String',
'float': 'f32',
Expand Down
2 changes: 1 addition & 1 deletion contrib/pyln-testing/pyln/testing/node_pb2.py

Large diffs are not rendered by default.

0 comments on commit acc3bb2

Please sign in to comment.