Skip to content

Commit

Permalink
Fix missing key type
Browse files Browse the repository at this point in the history
  • Loading branch information
rumkin committed Feb 28, 2020
1 parent 1d3fc68 commit aac44c2
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion packages/vm/lib/evm/opcodes.ts
Original file line number Diff line number Diff line change
Expand Up @@ -219,7 +219,7 @@ function createOpcodes(
const result: OpcodeList = {}
for (const [key, value] of Object.entries(opcodes)) {
const code = parseInt(key, 10)
result[key] = new Opcode({
result[<any>key] = new Opcode({
code,
fullName: getFullname(code, value.name),
...value
Expand Down

0 comments on commit aac44c2

Please sign in to comment.