Skip to content

Commit

Permalink
signed types: integer fix
Browse files Browse the repository at this point in the history
integer was missing from the list of type conversions causing CI to fall over

ChangeLog-None
  • Loading branch information
ddustin authored and rustyrussell committed Jul 31, 2023
1 parent dd871d9 commit 0ed0a8f
Showing 1 changed file with 1 addition and 0 deletions.
1 change: 1 addition & 0 deletions contrib/msggen/msggen/gen/grpc2py.py
Original file line number Diff line number Diff line change
Expand Up @@ -44,6 +44,7 @@ def __init__(self, dest: TextIO):
's16': "m.{name}",
's32': "m.{name}",
's64': "m.{name}",
'integer': "m.{name}",
'boolean': "m.{name}",
'short_channel_id': "m.{name}",
'msat': "amount2msat(m.{name})",
Expand Down

0 comments on commit 0ed0a8f

Please sign in to comment.