-
Notifications
You must be signed in to change notification settings - Fork 1.4k
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Add ord decode
command
#2401
Add ord decode
command
#2401
Conversation
tests/decode.rs
Outdated
inscriptions: vec![Inscription { | ||
body: Some(vec![0, 1, 2, 3]), | ||
content_type: Some(vec![ | ||
116, 101, 120, 116, 47, 112, 108, 97, 105, 110, 59, 99, 104, 97, 114, 115, 101, 116, 61, |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
make more readable, so that we can see that it corresponds to the inscription above
tests/decode.rs
Outdated
body: Some(vec![0, 1, 2, 3]), | ||
content_type: Some(vec![ | ||
116, 101, 120, 116, 47, 112, 108, 97, 105, 110, 59, 99, 104, 97, 114, 115, 101, 116, 61, | ||
117, 116, 102, 45, 56 |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
same as above
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
small nits
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
lgtm!
Decodes a transaction from a file, useful for debugging inscription parsing.