Skip to content

Commit

Permalink
t8n: fix requests reporting
Browse files Browse the repository at this point in the history
  • Loading branch information
jochem-brouwer committed Dec 19, 2024
1 parent 13aafd6 commit fc3c150
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion packages/vm/test/t8n/t8ntool.ts
Original file line number Diff line number Diff line change
Expand Up @@ -306,7 +306,7 @@ export class TransitionTool {
output.requests = []
for (const request of requests) {
if (request.bytes.length > 1) {
output.requests.push(bytesToHex(request.bytes.slice(1)))
output.requests.push(bytesToHex(request.bytes))
}
}
}
Expand Down

0 comments on commit fc3c150

Please sign in to comment.