mirror of
https://github.com/ElementsProject/lightning.git
synced 2025-01-18 05:12:45 +01:00
pyln: add (undocumented) u8 fundamental type.
Signed-off-by: Rusty Russell <rusty@rustcorp.com.au>
This commit is contained in:
parent
42aab89b9f
commit
9992a577b4
@ -235,6 +235,8 @@ def fundamental_types():
|
|||||||
BigSizeType('bigsize'),
|
BigSizeType('bigsize'),
|
||||||
# FIXME: See https://github.com/lightningnetwork/lightning-rfc/pull/778
|
# FIXME: See https://github.com/lightningnetwork/lightning-rfc/pull/778
|
||||||
BigSizeType('varint'),
|
BigSizeType('varint'),
|
||||||
|
# FIXME
|
||||||
|
IntegerType('u8', 1, 'B'),
|
||||||
]
|
]
|
||||||
|
|
||||||
|
|
||||||
|
@ -74,4 +74,4 @@ def test_fundamental_types():
|
|||||||
t.write(buf, v, None)
|
t.write(buf, v, None)
|
||||||
assert buf.getvalue() == test[1]
|
assert buf.getvalue() == test[1]
|
||||||
|
|
||||||
assert untested == set(['varint'])
|
assert untested == set(['varint', 'u8'])
|
||||||
|
Loading…
Reference in New Issue
Block a user