Fix encoding bug in assembler

pull/2/head
Bernhard Mueller 7 years ago
parent b24ca7f8b0
commit b77710f4d5
  1. 2
      ether/asm.py

@ -153,6 +153,6 @@ def assemble(disassembly):
if 'argument' in instruction:
bytecode += bytes(instruction['argument'], 'ascii')
bytecode += codecs.decode(instruction['argument'], 'hex_codec')
return bytecode

Loading…
Cancel
Save