-
Notifications
You must be signed in to change notification settings - Fork 80
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 documentation for memoHex in RPCS #613
Conversation
The latest updates on your projects. Learn more about Vercel for Git ↗︎
|
memo: string | ||
memoHex: string |
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.
need to mark these as optional
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.
Fixed
memo: string | ||
memoHex: string |
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.
optional
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.
Fixed
@@ -40,6 +41,8 @@ Creating a raw transaction does not require a spend key. They are not added to t | |||
} | |||
``` | |||
|
|||
> **Note:** outputs.memoHex is a hex encoded buffer with a max length of 32 bytes |
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.
I think this could be a bit confusing since the parameter is a string in the RPC requests
maybe is a hex-encoded string with a max length of 64 characters
? We could also say that the string is equivalent to a 32 byte buffer
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.
Also the memo field has the same limitation, this would make me think you could fit more in the memo field.
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.
Fixed
No description provided.