2018-04-06 14:52:10 +00:00
|
|
|
# Nimbus
|
|
|
|
# Copyright (c) 2018 Status Research & Development GmbH
|
|
|
|
# Licensed under either of
|
2021-03-31 08:58:26 +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 as vms
|
2021-04-21 10:12:46 +00:00
|
|
|
export
|
|
|
|
vms.setupTxContext
|
|
|
|
|
2021-04-08 14:52:10 +00:00
|
|
|
else:
|
|
|
|
import
|
2021-04-21 10:12:46 +00:00
|
|
|
./vm2/v2state_transactions as vmx,
|
2021-04-08 17:18:28 +00:00
|
|
|
./vm2/v2state as vms
|
2021-04-21 10:12:46 +00:00
|
|
|
export
|
|
|
|
vmx.setupTxContext
|
2021-03-31 08:58:26 +00:00
|
|
|
|
|
|
|
export
|
|
|
|
vms.`$`,
|
|
|
|
vms.blockNumber,
|
|
|
|
vms.blockhash,
|
|
|
|
vms.buildWitness,
|
|
|
|
vms.coinbase,
|
|
|
|
vms.consensusEnginePoA,
|
|
|
|
vms.difficulty,
|
|
|
|
vms.disableTracing,
|
|
|
|
vms.enableTracing,
|
|
|
|
vms.gasLimit,
|
|
|
|
vms.generateWitness,
|
|
|
|
vms.`generateWitness=`,
|
|
|
|
vms.getAncestorHash,
|
|
|
|
vms.getAndClearLogEntries,
|
|
|
|
vms.getTracingResult,
|
|
|
|
vms.init,
|
|
|
|
vms.mutateStateDB,
|
|
|
|
vms.newAccessLogs,
|
|
|
|
vms.newBaseVMState,
|
|
|
|
vms.readOnlyStateDB,
|
|
|
|
vms.removeTracedAccounts,
|
|
|
|
vms.status,
|
|
|
|
vms.`status=`,
|
|
|
|
vms.timestamp,
|
|
|
|
vms.tracedAccounts,
|
|
|
|
vms.tracedAccountsPairs,
|
|
|
|
vms.update,
|
|
|
|
vms.updateBlockHeader
|
|
|
|
|
|
|
|
# End
|