2018-04-06 14:52:10 +00:00
|
|
|
# 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.
|
|
|
|
|
2021-04-01 11:53:22 +00:00
|
|
|
import ./types
|
2018-11-08 15:48:32 +00:00
|
|
|
|
2018-09-07 16:19:03 +00:00
|
|
|
proc isCreate*(message: Message): bool =
|
2020-01-08 03:12:06 +00:00
|
|
|
message.kind in {evmcCreate, evmcCreate2}
|