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