smite: add closing_sig codec#109
Conversation
d458859 to
b53492f
Compare
94ddba2 to
efd1288
Compare
morehouse
left a comment
There was a problem hiding this comment.
There's several divergences from the closing_complete codec that we can fix for consistency. Other than that it looks good.
| fn decode_truncated_closee_scriptpubkey() { | ||
| let mut data = vec![0x11; CHANNEL_ID_SIZE]; | ||
| data.extend_from_slice(&[0x00, 0x0a]); | ||
| data.extend_from_slice(&[0x22; 0x0a]); |
There was a problem hiding this comment.
Nit:
| data.extend_from_slice(&[0x22; 0x0a]); | |
| data.extend_from_slice(&[0x22; 10]); |
Mhh, I'm not sure how I missed these, but 17571c5 should now have addressed all the feedback. I verified this by comparing the output of If nits like the one regarding decimal vs. hexadecimal for the |
part of #98 | based on #105
This is basically the same as #105.