You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
This line output := make([]byte, 0, len(signatureCount)+len(signatureCount)*64+len(messageData)), i think it makes more sense to use len(tx.Signatures) * 64 here.
The text was updated successfully, but these errors were encountered:
I have some questions about the following code:
This line
output := make([]byte, 0, len(signatureCount)+len(signatureCount)*64+len(messageData))
, i think it makes more sense to uselen(tx.Signatures) * 64
here.The text was updated successfully, but these errors were encountered: