-
Notifications
You must be signed in to change notification settings - Fork 6
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
feat: enable unsigned transactions in tracing #41
Conversation
AttributeKeyTxNonce = "txNonce" | ||
AttributeKeyTxData = "txData" |
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.
Where is this used ?
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.
these are new attributes for events for synthetic txs emitted in node code and parsed in rpc methods
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 , minor comment for my understanding
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, if we can use semantic PR for the title it would be great
Some of transactions are applied directly (fungible module). They don't have a signature, and tracing those txs fails with signature error. This fix is checking for unsigned txs and is not using it to parse
from
field.