Skip to content

Commit acc3bb2

Browse files
cdeckerShahanaFarooqui
authored andcommitted
msggen: Switch signatures to string instead of bytes
1 parent ef9e0fc commit acc3bb2

File tree

5 files changed

+5
-5
lines changed

5 files changed

+5
-5
lines changed

cln-grpc/proto/node.proto

Lines changed: 1 addition & 1 deletion
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

cln-rpc/src/model.rs

Lines changed: 1 addition & 1 deletion
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

contrib/msggen/msggen/gen/grpc.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -16,7 +16,7 @@
1616
'number': 'double',
1717
'pubkey': 'bytes',
1818
'short_channel_id': 'string',
19-
'signature': 'bytes',
19+
'signature': 'string',
2020
'string': 'string',
2121
'txid': 'bytes',
2222
'u8': 'uint32', # Yep, this is the smallest integer type in grpc...

contrib/msggen/msggen/gen/rust.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -25,7 +25,7 @@
2525
'number': 'f64',
2626
'pubkey': 'PublicKey',
2727
'short_channel_id': 'ShortChannelId',
28-
'signature': 'Vec<u8>',
28+
'signature': 'String',
2929
'string': 'String',
3030
'txid': 'String',
3131
'float': 'f32',

contrib/pyln-testing/pyln/testing/node_pb2.py

Lines changed: 1 addition & 1 deletion
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

0 commit comments

Comments
 (0)