nimbus-eth1/nimbus/vm/message.nim

12 lines
502 B
Nim
Raw Normal View History

# Nimbus
# Copyright (c) 2018 Status Research & Development GmbH
# Licensed under either of
# * Apache License, version 2.0, ([LICENSE-APACHE](LICENSE-APACHE) or http://www.apache.org/licenses/LICENSE-2.0)
# * MIT license ([LICENSE-MIT](LICENSE-MIT) or http://opensource.org/licenses/MIT)
# at your option. This file may not be copied, modified, or distributed except according to those terms.
2020-04-15 11:09:49 +00:00
import ../vm_types
2018-11-08 15:48:32 +00:00
2018-09-07 16:19:03 +00:00
proc isCreate*(message: Message): bool =
message.kind in {evmcCreate, evmcCreate2}