2018-04-06 14:52:10 +00:00
|
|
|
# Nimbus
|
|
|
|
# Copyright (c) 2018 Status Research & Development GmbH
|
|
|
|
# Licensed under either of
|
2021-03-31 09:05:47 +00:00
|
|
|
# * 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.
|
2018-04-06 14:52:10 +00:00
|
|
|
|
2021-04-08 14:52:10 +00:00
|
|
|
when defined(evmc_enabled) or not defined(vm2_enabled):
|
|
|
|
import
|
|
|
|
vm/state_transactions as vmx
|
|
|
|
else:
|
|
|
|
import
|
2021-04-23 09:45:50 +00:00
|
|
|
vm2/state_transactions as vmx
|
2018-01-17 12:57:50 +00:00
|
|
|
|
2021-03-31 09:05:47 +00:00
|
|
|
export
|
2021-05-03 18:19:34 +00:00
|
|
|
vmx.execComputation
|
2018-09-27 19:09:26 +00:00
|
|
|
|
2021-03-31 09:05:47 +00:00
|
|
|
# End
|