Skip to content
Projects
Groups
Snippets
Help
Loading...
Help
Submit feedback
Contribute to GitLab
Sign in
Toggle navigation
G
Geth-Modification
Project
Project
Details
Activity
Releases
Cycle Analytics
Repository
Repository
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Charts
Issues
0
Issues
0
List
Board
Labels
Milestones
Merge Requests
0
Merge Requests
0
CI / CD
CI / CD
Pipelines
Jobs
Schedules
Charts
Wiki
Wiki
Snippets
Snippets
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Charts
Create a new issue
Jobs
Commits
Issue Boards
Open sidebar
张蕾
Geth-Modification
Commits
0330077d
Commit
0330077d
authored
Mar 23, 2015
by
obscuren
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
moved state and vm to core
parent
d7eaa97a
Changes
58
Hide whitespace changes
Inline
Side-by-side
Showing
58 changed files
with
40 additions
and
40 deletions
+40
-40
main.go
cmd/disasm/main.go
+1
-1
admin.go
cmd/ethereum/admin.go
+1
-1
main.go
cmd/ethereum/main.go
+1
-1
main.go
cmd/ethtest/main.go
+2
-2
main.go
cmd/evm/main.go
+2
-2
bindings.go
cmd/mist/bindings.go
+1
-1
asm.go
core/asm.go
+1
-1
block_processor.go
core/block_processor.go
+1
-1
chain_makers.go
core/chain_makers.go
+1
-1
chain_manager.go
core/chain_manager.go
+1
-1
events.go
core/events.go
+1
-1
execution.go
core/execution.go
+2
-2
filter.go
core/filter.go
+1
-1
genesis.go
core/genesis.go
+1
-1
dump.go
core/state/dump.go
+0
-0
errors.go
core/state/errors.go
+0
-0
log.go
core/state/log.go
+0
-0
main_test.go
core/state/main_test.go
+0
-0
managed_state.go
core/state/managed_state.go
+0
-0
managed_state_test.go
core/state/managed_state_test.go
+0
-0
state_object.go
core/state/state_object.go
+0
-0
state_test.go
core/state/state_test.go
+0
-0
statedb.go
core/state/statedb.go
+0
-0
state_transition.go
core/state_transition.go
+2
-2
transaction_pool_test.go
core/transaction_pool_test.go
+1
-1
bloom9.go
core/types/bloom9.go
+1
-1
bloom9_test.go
core/types/bloom9_test.go
+1
-1
common.go
core/types/common.go
+1
-1
receipt.go
core/types/receipt.go
+1
-1
address.go
core/vm/address.go
+0
-0
analysis.go
core/vm/analysis.go
+0
-0
asm.go
core/vm/asm.go
+0
-0
common.go
core/vm/common.go
+0
-0
context.go
core/vm/context.go
+0
-0
environment.go
core/vm/environment.go
+1
-1
errors.go
core/vm/errors.go
+0
-0
gas.go
core/vm/gas.go
+0
-0
main_test.go
core/vm/main_test.go
+0
-0
memory.go
core/vm/memory.go
+0
-0
stack.go
core/vm/stack.go
+0
-0
types.go
core/vm/types.go
+0
-0
virtual_machine.go
core/vm/virtual_machine.go
+0
-0
vm.go
core/vm/vm.go
+1
-1
vm_jit.go
core/vm/vm_jit.go
+1
-1
vm_jit_fake.go
core/vm/vm_jit_fake.go
+0
-0
vm_test.go
core/vm/vm_test.go
+0
-0
vm_env.go
core/vm_env.go
+2
-2
backend.go
eth/backend.go
+1
-1
eth_filter.go
event/filter/eth_filter.go
+1
-1
worker.go
miner/worker.go
+1
-1
responses.go
rpc/responses.go
+1
-1
blocktest.go
tests/blocktest.go
+1
-1
vm.go
tests/helper/vm.go
+2
-2
gh_test.go
tests/vm/gh_test.go
+1
-1
.ethtest
vm/.ethtest
+0
-0
state.go
xeth/state.go
+1
-1
types.go
xeth/types.go
+1
-1
xeth.go
xeth/xeth.go
+1
-1
No files found.
cmd/disasm/main.go
View file @
0330077d
...
@@ -6,7 +6,7 @@ import (
...
@@ -6,7 +6,7 @@ import (
"os"
"os"
"github.com/ethereum/go-ethereum/common"
"github.com/ethereum/go-ethereum/common"
"github.com/ethereum/go-ethereum/vm"
"github.com/ethereum/go-ethereum/
core/
vm"
)
)
func
main
()
{
func
main
()
{
...
...
cmd/ethereum/admin.go
View file @
0330077d
...
@@ -12,7 +12,7 @@ import (
...
@@ -12,7 +12,7 @@ import (
"github.com/ethereum/go-ethereum/core/types"
"github.com/ethereum/go-ethereum/core/types"
"github.com/ethereum/go-ethereum/rlp"
"github.com/ethereum/go-ethereum/rlp"
"github.com/ethereum/go-ethereum/rpc"
"github.com/ethereum/go-ethereum/rpc"
"github.com/ethereum/go-ethereum/state"
"github.com/ethereum/go-ethereum/
core/
state"
"github.com/ethereum/go-ethereum/xeth"
"github.com/ethereum/go-ethereum/xeth"
"github.com/robertkrimen/otto"
"github.com/robertkrimen/otto"
)
)
...
...
cmd/ethereum/main.go
View file @
0330077d
...
@@ -36,7 +36,7 @@ import (
...
@@ -36,7 +36,7 @@ import (
"github.com/ethereum/go-ethereum/core/types"
"github.com/ethereum/go-ethereum/core/types"
"github.com/ethereum/go-ethereum/eth"
"github.com/ethereum/go-ethereum/eth"
"github.com/ethereum/go-ethereum/logger"
"github.com/ethereum/go-ethereum/logger"
"github.com/ethereum/go-ethereum/state"
"github.com/ethereum/go-ethereum/
core/
state"
"github.com/peterh/liner"
"github.com/peterh/liner"
)
)
...
...
cmd/ethtest/main.go
View file @
0330077d
...
@@ -36,9 +36,9 @@ import (
...
@@ -36,9 +36,9 @@ import (
"github.com/ethereum/go-ethereum/core/types"
"github.com/ethereum/go-ethereum/core/types"
"github.com/ethereum/go-ethereum/ethdb"
"github.com/ethereum/go-ethereum/ethdb"
"github.com/ethereum/go-ethereum/logger"
"github.com/ethereum/go-ethereum/logger"
"github.com/ethereum/go-ethereum/state"
"github.com/ethereum/go-ethereum/
core/
state"
"github.com/ethereum/go-ethereum/tests/helper"
"github.com/ethereum/go-ethereum/tests/helper"
"github.com/ethereum/go-ethereum/vm"
"github.com/ethereum/go-ethereum/
core/
vm"
)
)
type
Log
struct
{
type
Log
struct
{
...
...
cmd/evm/main.go
View file @
0330077d
...
@@ -35,8 +35,8 @@ import (
...
@@ -35,8 +35,8 @@ import (
"github.com/ethereum/go-ethereum/core/types"
"github.com/ethereum/go-ethereum/core/types"
"github.com/ethereum/go-ethereum/ethdb"
"github.com/ethereum/go-ethereum/ethdb"
"github.com/ethereum/go-ethereum/logger"
"github.com/ethereum/go-ethereum/logger"
"github.com/ethereum/go-ethereum/state"
"github.com/ethereum/go-ethereum/
core/
state"
"github.com/ethereum/go-ethereum/vm"
"github.com/ethereum/go-ethereum/
core/
vm"
)
)
var
(
var
(
...
...
cmd/mist/bindings.go
View file @
0330077d
...
@@ -28,7 +28,7 @@ import (
...
@@ -28,7 +28,7 @@ import (
"github.com/ethereum/go-ethereum/cmd/utils"
"github.com/ethereum/go-ethereum/cmd/utils"
"github.com/ethereum/go-ethereum/common"
"github.com/ethereum/go-ethereum/common"
"github.com/ethereum/go-ethereum/core/types"
"github.com/ethereum/go-ethereum/core/types"
"github.com/ethereum/go-ethereum/state"
"github.com/ethereum/go-ethereum/
core/
state"
)
)
type
plugin
struct
{
type
plugin
struct
{
...
...
core/asm.go
View file @
0330077d
...
@@ -5,7 +5,7 @@ import (
...
@@ -5,7 +5,7 @@ import (
"math/big"
"math/big"
"github.com/ethereum/go-ethereum/common"
"github.com/ethereum/go-ethereum/common"
"github.com/ethereum/go-ethereum/vm"
"github.com/ethereum/go-ethereum/
core/
vm"
)
)
func
Disassemble
(
script
[]
byte
)
(
asm
[]
string
)
{
func
Disassemble
(
script
[]
byte
)
(
asm
[]
string
)
{
...
...
core/block_processor.go
View file @
0330077d
...
@@ -12,7 +12,7 @@ import (
...
@@ -12,7 +12,7 @@ import (
"github.com/ethereum/go-ethereum/logger"
"github.com/ethereum/go-ethereum/logger"
"github.com/ethereum/go-ethereum/pow"
"github.com/ethereum/go-ethereum/pow"
"github.com/ethereum/go-ethereum/rlp"
"github.com/ethereum/go-ethereum/rlp"
"github.com/ethereum/go-ethereum/state"
"github.com/ethereum/go-ethereum/
core/
state"
"gopkg.in/fatih/set.v0"
"gopkg.in/fatih/set.v0"
)
)
...
...
core/chain_makers.go
View file @
0330077d
...
@@ -8,7 +8,7 @@ import (
...
@@ -8,7 +8,7 @@ import (
"github.com/ethereum/go-ethereum/core/types"
"github.com/ethereum/go-ethereum/core/types"
"github.com/ethereum/go-ethereum/event"
"github.com/ethereum/go-ethereum/event"
"github.com/ethereum/go-ethereum/pow"
"github.com/ethereum/go-ethereum/pow"
"github.com/ethereum/go-ethereum/state"
"github.com/ethereum/go-ethereum/
core/
state"
)
)
// So we can generate blocks easily
// So we can generate blocks easily
...
...
core/chain_manager.go
View file @
0330077d
...
@@ -12,7 +12,7 @@ import (
...
@@ -12,7 +12,7 @@ import (
"github.com/ethereum/go-ethereum/event"
"github.com/ethereum/go-ethereum/event"
"github.com/ethereum/go-ethereum/logger"
"github.com/ethereum/go-ethereum/logger"
"github.com/ethereum/go-ethereum/rlp"
"github.com/ethereum/go-ethereum/rlp"
"github.com/ethereum/go-ethereum/state"
"github.com/ethereum/go-ethereum/
core/
state"
)
)
var
(
var
(
...
...
core/events.go
View file @
0330077d
...
@@ -2,7 +2,7 @@ package core
...
@@ -2,7 +2,7 @@ package core
import
(
import
(
"github.com/ethereum/go-ethereum/core/types"
"github.com/ethereum/go-ethereum/core/types"
"github.com/ethereum/go-ethereum/state"
"github.com/ethereum/go-ethereum/
core/
state"
)
)
// TxPreEvent is posted when a transaction enters the transaction pool.
// TxPreEvent is posted when a transaction enters the transaction pool.
...
...
core/execution.go
View file @
0330077d
...
@@ -6,8 +6,8 @@ import (
...
@@ -6,8 +6,8 @@ import (
"github.com/ethereum/go-ethereum/common"
"github.com/ethereum/go-ethereum/common"
"github.com/ethereum/go-ethereum/crypto"
"github.com/ethereum/go-ethereum/crypto"
"github.com/ethereum/go-ethereum/state"
"github.com/ethereum/go-ethereum/
core/
state"
"github.com/ethereum/go-ethereum/vm"
"github.com/ethereum/go-ethereum/
core/
vm"
)
)
type
Execution
struct
{
type
Execution
struct
{
...
...
core/filter.go
View file @
0330077d
...
@@ -5,7 +5,7 @@ import (
...
@@ -5,7 +5,7 @@ import (
"github.com/ethereum/go-ethereum/common"
"github.com/ethereum/go-ethereum/common"
"github.com/ethereum/go-ethereum/core/types"
"github.com/ethereum/go-ethereum/core/types"
"github.com/ethereum/go-ethereum/state"
"github.com/ethereum/go-ethereum/
core/
state"
)
)
type
AccountChange
struct
{
type
AccountChange
struct
{
...
...
core/genesis.go
View file @
0330077d
...
@@ -8,7 +8,7 @@ import (
...
@@ -8,7 +8,7 @@ import (
"github.com/ethereum/go-ethereum/common"
"github.com/ethereum/go-ethereum/common"
"github.com/ethereum/go-ethereum/core/types"
"github.com/ethereum/go-ethereum/core/types"
"github.com/ethereum/go-ethereum/state"
"github.com/ethereum/go-ethereum/
core/
state"
)
)
/*
/*
...
...
state/dump.go
→
core/
state/dump.go
View file @
0330077d
File moved
state/errors.go
→
core/
state/errors.go
View file @
0330077d
File moved
state/log.go
→
core/
state/log.go
View file @
0330077d
File moved
state/main_test.go
→
core/
state/main_test.go
View file @
0330077d
File moved
state/managed_state.go
→
core/
state/managed_state.go
View file @
0330077d
File moved
state/managed_state_test.go
→
core/
state/managed_state_test.go
View file @
0330077d
File moved
state/state_object.go
→
core/
state/state_object.go
View file @
0330077d
File moved
state/state_test.go
→
core/
state/state_test.go
View file @
0330077d
File moved
state/statedb.go
→
core/
state/statedb.go
View file @
0330077d
File moved
core/state_transition.go
View file @
0330077d
...
@@ -6,8 +6,8 @@ import (
...
@@ -6,8 +6,8 @@ import (
"github.com/ethereum/go-ethereum/common"
"github.com/ethereum/go-ethereum/common"
"github.com/ethereum/go-ethereum/crypto"
"github.com/ethereum/go-ethereum/crypto"
"github.com/ethereum/go-ethereum/state"
"github.com/ethereum/go-ethereum/
core/
state"
"github.com/ethereum/go-ethereum/vm"
"github.com/ethereum/go-ethereum/
core/
vm"
)
)
const
tryJit
=
false
const
tryJit
=
false
...
...
core/transaction_pool_test.go
View file @
0330077d
...
@@ -9,7 +9,7 @@ import (
...
@@ -9,7 +9,7 @@ import (
"github.com/ethereum/go-ethereum/crypto"
"github.com/ethereum/go-ethereum/crypto"
"github.com/ethereum/go-ethereum/ethdb"
"github.com/ethereum/go-ethereum/ethdb"
"github.com/ethereum/go-ethereum/event"
"github.com/ethereum/go-ethereum/event"
"github.com/ethereum/go-ethereum/state"
"github.com/ethereum/go-ethereum/
core/
state"
)
)
// State query interface
// State query interface
...
...
core/types/bloom9.go
View file @
0330077d
...
@@ -5,7 +5,7 @@ import (
...
@@ -5,7 +5,7 @@ import (
"github.com/ethereum/go-ethereum/common"
"github.com/ethereum/go-ethereum/common"
"github.com/ethereum/go-ethereum/crypto"
"github.com/ethereum/go-ethereum/crypto"
"github.com/ethereum/go-ethereum/state"
"github.com/ethereum/go-ethereum/
core/
state"
)
)
func
CreateBloom
(
receipts
Receipts
)
Bloom
{
func
CreateBloom
(
receipts
Receipts
)
Bloom
{
...
...
core/types/bloom9_test.go
View file @
0330077d
...
@@ -4,7 +4,7 @@ package types
...
@@ -4,7 +4,7 @@ package types
import (
import (
"testing"
"testing"
"github.com/ethereum/go-ethereum/state"
"github.com/ethereum/go-ethereum/
core/
state"
)
)
func TestBloom9(t *testing.T) {
func TestBloom9(t *testing.T) {
...
...
core/types/common.go
View file @
0330077d
...
@@ -4,7 +4,7 @@ import (
...
@@ -4,7 +4,7 @@ import (
"math/big"
"math/big"
"github.com/ethereum/go-ethereum/common"
"github.com/ethereum/go-ethereum/common"
"github.com/ethereum/go-ethereum/state"
"github.com/ethereum/go-ethereum/
core/
state"
"fmt"
"fmt"
)
)
...
...
core/types/receipt.go
View file @
0330077d
...
@@ -8,7 +8,7 @@ import (
...
@@ -8,7 +8,7 @@ import (
"github.com/ethereum/go-ethereum/common"
"github.com/ethereum/go-ethereum/common"
"github.com/ethereum/go-ethereum/rlp"
"github.com/ethereum/go-ethereum/rlp"
"github.com/ethereum/go-ethereum/state"
"github.com/ethereum/go-ethereum/
core/
state"
)
)
type
Receipt
struct
{
type
Receipt
struct
{
...
...
vm/address.go
→
core/
vm/address.go
View file @
0330077d
File moved
vm/analysis.go
→
core/
vm/analysis.go
View file @
0330077d
File moved
vm/asm.go
→
core/
vm/asm.go
View file @
0330077d
File moved
vm/common.go
→
core/
vm/common.go
View file @
0330077d
File moved
vm/context.go
→
core/
vm/context.go
View file @
0330077d
File moved
vm/environment.go
→
core/
vm/environment.go
View file @
0330077d
...
@@ -8,7 +8,7 @@ import (
...
@@ -8,7 +8,7 @@ import (
"github.com/ethereum/go-ethereum/common"
"github.com/ethereum/go-ethereum/common"
"github.com/ethereum/go-ethereum/rlp"
"github.com/ethereum/go-ethereum/rlp"
"github.com/ethereum/go-ethereum/state"
"github.com/ethereum/go-ethereum/
core/
state"
)
)
type
Environment
interface
{
type
Environment
interface
{
...
...
vm/errors.go
→
core/
vm/errors.go
View file @
0330077d
File moved
vm/gas.go
→
core/
vm/gas.go
View file @
0330077d
File moved
vm/main_test.go
→
core/
vm/main_test.go
View file @
0330077d
File moved
vm/memory.go
→
core/
vm/memory.go
View file @
0330077d
File moved
vm/stack.go
→
core/
vm/stack.go
View file @
0330077d
File moved
vm/types.go
→
core/
vm/types.go
View file @
0330077d
File moved
vm/virtual_machine.go
→
core/
vm/virtual_machine.go
View file @
0330077d
File moved
vm/vm.go
→
core/
vm/vm.go
View file @
0330077d
...
@@ -6,7 +6,7 @@ import (
...
@@ -6,7 +6,7 @@ import (
"github.com/ethereum/go-ethereum/common"
"github.com/ethereum/go-ethereum/common"
"github.com/ethereum/go-ethereum/crypto"
"github.com/ethereum/go-ethereum/crypto"
"github.com/ethereum/go-ethereum/state"
"github.com/ethereum/go-ethereum/
core/
state"
)
)
type
Vm
struct
{
type
Vm
struct
{
...
...
vm/vm_jit.go
→
core/
vm/vm_jit.go
View file @
0330077d
...
@@ -19,7 +19,7 @@ import (
...
@@ -19,7 +19,7 @@ import (
"errors"
"errors"
"fmt"
"fmt"
"github.com/ethereum/go-ethereum/crypto"
"github.com/ethereum/go-ethereum/crypto"
"github.com/ethereum/go-ethereum/state"
"github.com/ethereum/go-ethereum/
core/
state"
"math/big"
"math/big"
"unsafe"
"unsafe"
)
)
...
...
vm/vm_jit_fake.go
→
core/
vm/vm_jit_fake.go
View file @
0330077d
File moved
vm/vm_test.go
→
core/
vm/vm_test.go
View file @
0330077d
File moved
core/vm_env.go
View file @
0330077d
...
@@ -5,8 +5,8 @@ import (
...
@@ -5,8 +5,8 @@ import (
"github.com/ethereum/go-ethereum/common"
"github.com/ethereum/go-ethereum/common"
"github.com/ethereum/go-ethereum/core/types"
"github.com/ethereum/go-ethereum/core/types"
"github.com/ethereum/go-ethereum/state"
"github.com/ethereum/go-ethereum/
core/
state"
"github.com/ethereum/go-ethereum/vm"
"github.com/ethereum/go-ethereum/
core/
vm"
)
)
type
VMEnv
struct
{
type
VMEnv
struct
{
...
...
eth/backend.go
View file @
0330077d
...
@@ -21,7 +21,7 @@ import (
...
@@ -21,7 +21,7 @@ import (
"github.com/ethereum/go-ethereum/p2p"
"github.com/ethereum/go-ethereum/p2p"
"github.com/ethereum/go-ethereum/p2p/discover"
"github.com/ethereum/go-ethereum/p2p/discover"
"github.com/ethereum/go-ethereum/p2p/nat"
"github.com/ethereum/go-ethereum/p2p/nat"
"github.com/ethereum/go-ethereum/vm"
"github.com/ethereum/go-ethereum/
core/
vm"
"github.com/ethereum/go-ethereum/whisper"
"github.com/ethereum/go-ethereum/whisper"
)
)
...
...
event/filter/eth_filter.go
View file @
0330077d
...
@@ -7,7 +7,7 @@ import (
...
@@ -7,7 +7,7 @@ import (
"github.com/ethereum/go-ethereum/core"
"github.com/ethereum/go-ethereum/core"
"github.com/ethereum/go-ethereum/event"
"github.com/ethereum/go-ethereum/event"
"github.com/ethereum/go-ethereum/state"
"github.com/ethereum/go-ethereum/
core/
state"
)
)
type
FilterManager
struct
{
type
FilterManager
struct
{
...
...
miner/worker.go
View file @
0330077d
...
@@ -13,7 +13,7 @@ import (
...
@@ -13,7 +13,7 @@ import (
"github.com/ethereum/go-ethereum/event"
"github.com/ethereum/go-ethereum/event"
"github.com/ethereum/go-ethereum/logger"
"github.com/ethereum/go-ethereum/logger"
"github.com/ethereum/go-ethereum/pow"
"github.com/ethereum/go-ethereum/pow"
"github.com/ethereum/go-ethereum/state"
"github.com/ethereum/go-ethereum/
core/
state"
"gopkg.in/fatih/set.v0"
"gopkg.in/fatih/set.v0"
)
)
...
...
rpc/responses.go
View file @
0330077d
...
@@ -7,7 +7,7 @@ import (
...
@@ -7,7 +7,7 @@ import (
"github.com/ethereum/go-ethereum/common"
"github.com/ethereum/go-ethereum/common"
"github.com/ethereum/go-ethereum/core/types"
"github.com/ethereum/go-ethereum/core/types"
"github.com/ethereum/go-ethereum/state"
"github.com/ethereum/go-ethereum/
core/
state"
)
)
type
BlockRes
struct
{
type
BlockRes
struct
{
...
...
tests/blocktest.go
View file @
0330077d
...
@@ -15,7 +15,7 @@ import (
...
@@ -15,7 +15,7 @@ import (
"github.com/ethereum/go-ethereum/common"
"github.com/ethereum/go-ethereum/common"
"github.com/ethereum/go-ethereum/core/types"
"github.com/ethereum/go-ethereum/core/types"
"github.com/ethereum/go-ethereum/rlp"
"github.com/ethereum/go-ethereum/rlp"
"github.com/ethereum/go-ethereum/state"
"github.com/ethereum/go-ethereum/
core/
state"
)
)
// Block Test JSON Format
// Block Test JSON Format
...
...
tests/helper/vm.go
View file @
0330077d
...
@@ -7,8 +7,8 @@ import (
...
@@ -7,8 +7,8 @@ import (
"github.com/ethereum/go-ethereum/common"
"github.com/ethereum/go-ethereum/common"
"github.com/ethereum/go-ethereum/core"
"github.com/ethereum/go-ethereum/core"
"github.com/ethereum/go-ethereum/crypto"
"github.com/ethereum/go-ethereum/crypto"
"github.com/ethereum/go-ethereum/state"
"github.com/ethereum/go-ethereum/
core/
state"
"github.com/ethereum/go-ethereum/vm"
"github.com/ethereum/go-ethereum/
core/
vm"
)
)
type
Env
struct
{
type
Env
struct
{
...
...
tests/vm/gh_test.go
View file @
0330077d
...
@@ -10,7 +10,7 @@ import (
...
@@ -10,7 +10,7 @@ import (
"github.com/ethereum/go-ethereum/core/types"
"github.com/ethereum/go-ethereum/core/types"
"github.com/ethereum/go-ethereum/ethdb"
"github.com/ethereum/go-ethereum/ethdb"
"github.com/ethereum/go-ethereum/logger"
"github.com/ethereum/go-ethereum/logger"
"github.com/ethereum/go-ethereum/state"
"github.com/ethereum/go-ethereum/
core/
state"
"github.com/ethereum/go-ethereum/tests/helper"
"github.com/ethereum/go-ethereum/tests/helper"
)
)
...
...
vm/.ethtest
deleted
100644 → 0
View file @
d7eaa97a
xeth/state.go
View file @
0330077d
...
@@ -2,7 +2,7 @@ package xeth
...
@@ -2,7 +2,7 @@ package xeth
import
(
import
(
"github.com/ethereum/go-ethereum/common"
"github.com/ethereum/go-ethereum/common"
"github.com/ethereum/go-ethereum/state"
"github.com/ethereum/go-ethereum/
core/
state"
)
)
type
State
struct
{
type
State
struct
{
...
...
xeth/types.go
View file @
0330077d
...
@@ -11,7 +11,7 @@ import (
...
@@ -11,7 +11,7 @@ import (
"github.com/ethereum/go-ethereum/crypto"
"github.com/ethereum/go-ethereum/crypto"
"github.com/ethereum/go-ethereum/p2p"
"github.com/ethereum/go-ethereum/p2p"
"github.com/ethereum/go-ethereum/rlp"
"github.com/ethereum/go-ethereum/rlp"
"github.com/ethereum/go-ethereum/state"
"github.com/ethereum/go-ethereum/
core/
state"
)
)
type
Object
struct
{
type
Object
struct
{
...
...
xeth/xeth.go
View file @
0330077d
...
@@ -19,7 +19,7 @@ import (
...
@@ -19,7 +19,7 @@ import (
"github.com/ethereum/go-ethereum/logger"
"github.com/ethereum/go-ethereum/logger"
"github.com/ethereum/go-ethereum/miner"
"github.com/ethereum/go-ethereum/miner"
"github.com/ethereum/go-ethereum/p2p"
"github.com/ethereum/go-ethereum/p2p"
"github.com/ethereum/go-ethereum/state"
"github.com/ethereum/go-ethereum/
core/
state"
"github.com/ethereum/go-ethereum/whisper"
"github.com/ethereum/go-ethereum/whisper"
)
)
...
...
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment