Skip to content

Commit 6c25c92

Browse files
authored
Dump data as hex (#22)
* Dump data as hex * Run precommits
1 parent 6ab3536 commit 6c25c92

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

program_admin/__init__.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -175,7 +175,7 @@ async def send_transaction(
175175
for instruction in instructions:
176176
instruction_output = {
177177
"program_id": instruction.program_id,
178-
"data": instruction.data.decode(),
178+
"data": instruction.data.hex(),
179179
}
180180
accounts = []
181181
for account in instruction.keys:

0 commit comments

Comments
 (0)