core: add price for CALLT instruction

This commit is contained in:
Anna Shaleva 2021-06-07 19:17:22 +03:00
parent 352450d25a
commit 20e0a0d746

View file

@ -65,6 +65,7 @@ var coefficients = map[opcode.Opcode]int64{
opcode.CALL: 1 << 9,
opcode.CALLL: 1 << 9,
opcode.CALLA: 1 << 9,
opcode.CALLT: 1 << 15,
opcode.ABORT: 0,
opcode.ASSERT: 1 << 0,
opcode.THROW: 1 << 9,