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.
|
|
|
|
|
|
|
|
import
|
2019-02-05 19:15:50 +00:00
|
|
|
eth/common,
|
2018-11-08 15:48:32 +00:00
|
|
|
../constants, ../validation, ../vm_types, chronicles
|
|
|
|
|
2018-01-15 18:42:40 +00:00
|
|
|
proc isOrigin*(message: Message): bool =
|
|
|
|
message.sender == message.origin
|
|
|
|
|
2018-09-07 16:19:03 +00:00
|
|
|
proc isCreate*(message: Message): bool =
|
2019-04-18 05:42:37 +00:00
|
|
|
message.contractCreation
|