Skip to content
Projects
Groups
Snippets
Help
Loading...
Help
Support
Submit feedback
Sign in
Toggle navigation
P
parity-ethereum
Project overview
Project overview
Details
Activity
Releases
Cycle Analytics
Insights
Repository
Repository
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Charts
Locked Files
Issues
1
Issues
1
List
Boards
Labels
Milestones
Merge Requests
0
Merge Requests
0
CI / CD
CI / CD
Pipelines
Jobs
Schedules
Charts
Security & Compliance
Security & Compliance
Dependency List
Packages
Packages
Container Registry
Wiki
Wiki
Snippets
Snippets
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Charts
Create a new issue
Jobs
Commits
Issue Boards
Open sidebar
parity
parity-ethereum
Commits
c5e96259
Commit
c5e96259
authored
Nov 15, 2019
by
Marek Kotewicz
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
removed redundant VMType enum with one variant
parent
eb565a7e
Pipeline
#65403
passed with stages
in 46 minutes and 46 seconds
Changes
18
Pipelines
2
Hide whitespace changes
Inline
Side-by-side
Showing
18 changed files
with
29 additions
and
117 deletions
+29
-117
ethcore/evm/src/factory.rs
ethcore/evm/src/factory.rs
+8
-14
ethcore/evm/src/interpreter/mod.rs
ethcore/evm/src/interpreter/mod.rs
+1
-2
ethcore/evm/src/lib.rs
ethcore/evm/src/lib.rs
+0
-2
ethcore/evm/src/tests.rs
ethcore/evm/src/tests.rs
+1
-2
ethcore/evm/src/vmtype.rs
ethcore/evm/src/vmtype.rs
+0
-45
ethcore/machine/src/executive.rs
ethcore/machine/src/executive.rs
+1
-1
ethcore/src/client/client.rs
ethcore/src/client/client.rs
+1
-1
ethcore/src/client/config.rs
ethcore/src/client/config.rs
+0
-5
ethcore/src/client/mod.rs
ethcore/src/client/mod.rs
+1
-1
ethcore/src/json_tests/executive.rs
ethcore/src/json_tests/executive.rs
+5
-14
ethcore/src/test_helpers/evm_test_client.rs
ethcore/src/test_helpers/evm_test_client.rs
+2
-2
ethcore/src/tests/evm.rs
ethcore/src/tests/evm.rs
+1
-1
ethcore/trie-vm-factories/src/lib.rs
ethcore/trie-vm-factories/src/lib.rs
+4
-4
parity/blockchain.rs
parity/blockchain.rs
+1
-4
parity/configuration.rs
parity/configuration.rs
+0
-11
parity/helpers.rs
parity/helpers.rs
+1
-3
parity/run.rs
parity/run.rs
+1
-3
parity/snapshot_cmd.rs
parity/snapshot_cmd.rs
+1
-2
No files found.
ethcore/evm/src/factory.rs
View file @
c5e96259
...
...
@@ -21,12 +21,10 @@ use vm::{Exec, Schedule};
use
ethereum_types
::
U256
;
use
super
::
vm
::
ActionParams
;
use
super
::
interpreter
::
SharedCache
;
use
super
::
vmtype
::
VMType
;
/// Evm factory. Creates appropriate Evm.
#[derive(Clone)]
pub
struct
Factory
{
evm
:
VMType
,
evm_cache
:
Arc
<
SharedCache
>
,
}
...
...
@@ -34,20 +32,17 @@ impl Factory {
/// Create fresh instance of VM
/// Might choose implementation depending on supplied gas.
pub
fn
create
(
&
self
,
params
:
ActionParams
,
schedule
:
&
Schedule
,
depth
:
usize
)
->
Box
<
dyn
Exec
>
{
match
self
.evm
{
VMType
::
Interpreter
=>
if
Self
::
can_fit_in_usize
(
&
params
.gas
)
{
Box
::
new
(
super
::
interpreter
::
Interpreter
::
<
usize
>
::
new
(
params
,
self
.evm_cache
.clone
(),
schedule
,
depth
))
}
else
{
Box
::
new
(
super
::
interpreter
::
Interpreter
::
<
U256
>
::
new
(
params
,
self
.evm_cache
.clone
(),
schedule
,
depth
))
}
if
Self
::
can_fit_in_usize
(
&
params
.gas
)
{
Box
::
new
(
super
::
interpreter
::
Interpreter
::
<
usize
>
::
new
(
params
,
self
.evm_cache
.clone
(),
schedule
,
depth
))
}
else
{
Box
::
new
(
super
::
interpreter
::
Interpreter
::
<
U256
>
::
new
(
params
,
self
.evm_cache
.clone
(),
schedule
,
depth
))
}
}
/// Create new instance of
specific `VMType`
factory, with a size in bytes
/// Create new instance of
a
factory, with a size in bytes
/// for caching jump destinations.
pub
fn
new
(
evm
:
VMType
,
cache_size
:
usize
)
->
Self
{
pub
fn
new
(
cache_size
:
usize
)
->
Self
{
Factory
{
evm
,
evm_cache
:
Arc
::
new
(
SharedCache
::
new
(
cache_size
)),
}
}
...
...
@@ -61,7 +56,6 @@ impl Default for Factory {
/// Returns native rust evm factory
fn
default
()
->
Factory
{
Factory
{
evm
:
VMType
::
Interpreter
,
evm_cache
:
Arc
::
new
(
SharedCache
::
default
()),
}
}
...
...
@@ -85,7 +79,7 @@ macro_rules! evm_test(
(
$name_test
:
ident
:
$name_int
:
ident
)
=>
{
#[test]
fn
$name_int
()
{
$name_test
(
Factory
::
new
(
VMType
::
Interpreter
,
1024
*
32
));
$name_test
(
Factory
::
new
(
1024
*
32
));
}
}
);
...
...
@@ -98,7 +92,7 @@ macro_rules! evm_test_ignore(
#[ignore]
#[cfg(feature
=
"ignored-tests"
)]
fn
$name_int
()
{
$name_test
(
Factory
::
new
(
VMType
::
Interpreter
,
1024
*
32
));
$name_test
(
Factory
::
new
(
1024
*
32
));
}
}
);
ethcore/evm/src/interpreter/mod.rs
View file @
c5e96259
...
...
@@ -1213,14 +1213,13 @@ fn address_to_u256(value: Address) -> U256 {
mod
tests
{
use
std
::
sync
::
Arc
;
use
rustc_hex
::
FromHex
;
use
vmtype
::
VMType
;
use
factory
::
Factory
;
use
vm
::{
self
,
Exec
,
ActionParams
,
ActionValue
};
use
vm
::
tests
::{
FakeExt
,
test_finalize
};
use
ethereum_types
::
Address
;
fn
interpreter
(
params
:
ActionParams
,
ext
:
&
dyn
vm
::
Ext
)
->
Box
<
dyn
Exec
>
{
Factory
::
new
(
VMType
::
Interpreter
,
1
)
.create
(
params
,
ext
.schedule
(),
ext
.depth
())
Factory
::
new
(
1
)
.create
(
params
,
ext
.schedule
(),
ext
.depth
())
}
#[test]
...
...
ethcore/evm/src/lib.rs
View file @
c5e96259
...
...
@@ -41,7 +41,6 @@ pub mod interpreter;
#[macro_use]
pub
mod
factory
;
mod
vmtype
;
mod
instructions
;
#[cfg(test)]
...
...
@@ -54,5 +53,4 @@ pub use vm::{
};
pub
use
self
::
evm
::{
Finalize
,
FinalizationResult
,
CostType
};
pub
use
self
::
instructions
::{
InstructionInfo
,
Instruction
};
pub
use
self
::
vmtype
::
VMType
;
pub
use
self
::
factory
::
Factory
;
ethcore/evm/src/tests.rs
View file @
c5e96259
...
...
@@ -23,7 +23,6 @@ use ethereum_types::{U256, H256, Address};
use
vm
::{
self
,
ActionParams
,
ActionValue
,
Ext
};
use
vm
::
tests
::{
FakeExt
,
FakeCall
,
FakeCallType
,
test_finalize
};
use
factory
::
Factory
;
use
vmtype
::
VMType
;
use
hex_literal
::
hex
;
evm_test!
{
test_add
:
test_add_int
}
...
...
@@ -705,7 +704,7 @@ fn test_signextend(factory: super::Factory) {
#[test]
// JIT just returns out of gas
fn
test_badinstruction_int
()
{
let
factory
=
super
::
Factory
::
new
(
VMType
::
Interpreter
,
1024
*
32
);
let
factory
=
super
::
Factory
::
new
(
1024
*
32
);
let
code
=
hex!
(
"af"
)
.to_vec
();
let
mut
params
=
ActionParams
::
default
();
...
...
ethcore/evm/src/vmtype.rs
deleted
100644 → 0
View file @
eb565a7e
// Copyright 2015-2019 Parity Technologies (UK) Ltd.
// This file is part of Parity Ethereum.
// Parity Ethereum is free software: you can redistribute it and/or modify
// it under the terms of the GNU General Public License as published by
// the Free Software Foundation, either version 3 of the License, or
// (at your option) any later version.
// Parity Ethereum is distributed in the hope that it will be useful,
// but WITHOUT ANY WARRANTY; without even the implied warranty of
// MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
// GNU General Public License for more details.
// You should have received a copy of the GNU General Public License
// along with Parity Ethereum. If not, see <http://www.gnu.org/licenses/>.
use
std
::
fmt
;
/// Type of EVM to use.
#[derive(Debug,
PartialEq,
Clone)]
pub
enum
VMType
{
/// RUST EVM
Interpreter
}
impl
fmt
::
Display
for
VMType
{
fn
fmt
(
&
self
,
f
:
&
mut
fmt
::
Formatter
)
->
fmt
::
Result
{
write!
(
f
,
"{}"
,
match
*
self
{
VMType
::
Interpreter
=>
"INT"
})
}
}
impl
Default
for
VMType
{
fn
default
()
->
Self
{
VMType
::
Interpreter
}
}
impl
VMType
{
/// Return all possible VMs (Interpreter)
pub
fn
all
()
->
Vec
<
VMType
>
{
vec!
[
VMType
::
Interpreter
]
}
}
ethcore/machine/src/executive.rs
View file @
c5e96259
...
...
@@ -1234,7 +1234,7 @@ mod tests {
transaction
::{
Action
,
Transaction
},
};
use
parity_crypto
::
publickey
::{
Generator
,
Random
};
use
evm
::{
Factory
,
VMType
,
evm_test
,
evm_test_ignore
};
use
evm
::{
Factory
,
evm_test
,
evm_test_ignore
};
use
macros
::
vec_into
;
use
vm
::{
ActionParams
,
ActionValue
,
CallType
,
EnvInfo
,
CreateContractAddress
};
use
::
trace
::{
...
...
ethcore/src/client/client.rs
View file @
c5e96259
...
...
@@ -725,7 +725,7 @@ impl Client {
let
trie_factory
=
TrieFactory
::
new
(
trie_spec
,
Layout
);
let
factories
=
Factories
{
vm
:
VmFactory
::
new
(
config
.
vm_type
.clone
(),
config
.
jump_table_size
),
vm
:
VmFactory
::
new
(
config
.jump_table_size
),
trie
:
trie_factory
,
accountdb
:
Default
::
default
(),
};
...
...
ethcore/src/client/config.rs
View file @
c5e96259
...
...
@@ -23,8 +23,6 @@ use trace::Config as TraceConfig;
use
types
::
client_types
::
Mode
;
use
verification
::{
VerifierType
,
QueueConfig
};
pub
use
evm
::
VMType
;
/// Client state db compaction profile
#[derive(Debug,
PartialEq,
Clone)]
pub
enum
DatabaseCompactionProfile
{
...
...
@@ -64,8 +62,6 @@ pub struct ClientConfig {
pub
blockchain
:
BlockChainConfig
,
/// Trace configuration.
pub
tracing
:
TraceConfig
,
/// VM type.
pub
vm_type
:
VMType
,
/// Fat DB enabled?
pub
fat_db
:
bool
,
/// The JournalDB ("pruning") algorithm to use.
...
...
@@ -107,7 +103,6 @@ impl Default for ClientConfig {
queue
:
Default
::
default
(),
blockchain
:
Default
::
default
(),
tracing
:
Default
::
default
(),
vm_type
:
Default
::
default
(),
fat_db
:
false
,
pruning
:
journaldb
::
Algorithm
::
OverlayRecent
,
name
:
"default"
.into
(),
...
...
ethcore/src/client/mod.rs
View file @
c5e96259
...
...
@@ -23,7 +23,7 @@ mod config;
mod
traits
;
pub
use
self
::
client
::
Client
;
pub
use
self
::
config
::{
ClientConfig
,
DatabaseCompactionProfile
,
VMType
};
pub
use
self
::
config
::{
ClientConfig
,
DatabaseCompactionProfile
};
pub
use
self
::
traits
::{
ReopenBlock
,
PrepareOpenBlock
,
ImportSealedBlock
,
BroadcastProposalBlock
,
Call
,
EngineInfo
,
BlockProducer
,
SealedBlockImporter
,
...
...
ethcore/src/json_tests/executive.rs
View file @
c5e96259
...
...
@@ -18,7 +18,7 @@ use std::path::Path;
use
std
::
sync
::
Arc
;
use
super
::
test_common
::
*
;
use
account_state
::{
Backend
as
StateBackend
,
State
};
use
evm
::
{
VMType
,
Finalize
}
;
use
evm
::
Finalize
;
use
vm
::{
self
,
ActionParams
,
CallType
,
Schedule
,
Ext
,
ContractCreateResult
,
EnvInfo
,
MessageCallResult
,
...
...
@@ -235,17 +235,8 @@ impl<'a, T: 'a, V: 'a, B: 'a> Ext for TestExt<'a, T, V, B>
}
}
fn
do_json_test
<
H
:
FnMut
(
&
str
,
HookType
)
>
(
path
:
&
Path
,
json_data
:
&
[
u8
],
h
:
&
mut
H
)
->
Vec
<
String
>
{
let
vms
=
VMType
::
all
();
vms
.iter
()
.flat_map
(|
vm
|
do_json_test_for
(
path
,
vm
,
json_data
,
h
))
.collect
()
}
fn
do_json_test_for
<
H
:
FnMut
(
&
str
,
HookType
)
>
(
fn
do_json_test
<
H
:
FnMut
(
&
str
,
HookType
)
>
(
path
:
&
Path
,
vm_type
:
&
VMType
,
json_data
:
&
[
u8
],
start_stop_hook
:
&
mut
H
)
->
Vec
<
String
>
{
...
...
@@ -254,13 +245,13 @@ fn do_json_test_for<H: FnMut(&str, HookType)>(
let
mut
failed
=
Vec
::
new
();
for
(
name
,
vm
)
in
tests
.into_iter
()
{
start_stop_hook
(
&
format!
(
"{}
-{}"
,
name
,
vm_typ
e
),
HookType
::
OnStart
);
start_stop_hook
(
&
format!
(
"{}
"
,
nam
e
),
HookType
::
OnStart
);
info!
(
target
:
"jsontests"
,
"name: {:?}"
,
name
);
let
mut
fail
=
false
;
let
mut
fail_unless
=
|
cond
:
bool
,
s
:
&
str
|
if
!
cond
&&
!
fail
{
failed
.push
(
format!
(
"
[{}] {}: {}"
,
vm_type
,
name
,
s
));
failed
.push
(
format!
(
"
{}: {}"
,
name
,
s
));
fail
=
true
};
...
...
@@ -363,7 +354,7 @@ fn do_json_test_for<H: FnMut(&str, HookType)>(
}
};
start_stop_hook
(
&
format!
(
"{}
-{}"
,
name
,
vm_typ
e
),
HookType
::
OnStop
);
start_stop_hook
(
&
format!
(
"{}
"
,
nam
e
),
HookType
::
OnStop
);
}
for
f
in
&
failed
{
...
...
ethcore/src/test_helpers/evm_test_client.rs
View file @
c5e96259
...
...
@@ -31,7 +31,7 @@ use types::{
};
use
ethjson
::
spec
::
ForkSpec
;
use
trie_vm_factories
::
Factories
;
use
evm
::
{
VMType
,
FinalizationResult
}
;
use
evm
::
FinalizationResult
;
use
vm
::{
self
,
ActionParams
,
CreateContractAddress
};
use
ethtrie
;
use
account_state
::{
CleanupMode
,
State
};
...
...
@@ -158,7 +158,7 @@ impl<'a> EvmTestClient<'a> {
fn
factories
(
trie_spec
:
trie
::
TrieSpec
)
->
Factories
{
Factories
{
vm
:
trie_vm_factories
::
VmFactory
::
new
(
VMType
::
Interpreter
,
5
*
1024
),
vm
:
trie_vm_factories
::
VmFactory
::
new
(
5
*
1024
),
trie
:
trie
::
TrieFactory
::
new
(
trie_spec
,
ethtrie
::
Layout
),
accountdb
:
Default
::
default
(),
}
...
...
ethcore/src/tests/evm.rs
View file @
c5e96259
...
...
@@ -19,7 +19,7 @@
use
std
::
sync
::
Arc
;
use
hash
::
keccak
;
use
vm
::{
EnvInfo
,
ActionParams
,
ActionValue
,
CallType
,
ParamsType
};
use
evm
::
{
Factory
,
VMType
}
;
use
evm
::
Factory
;
use
machine
::{
executive
::
Executive
,
substate
::
Substate
,
...
...
ethcore/trie-vm-factories/src/lib.rs
View file @
c5e96259
...
...
@@ -17,7 +17,7 @@
use
trie_db
::
TrieFactory
;
use
ethtrie
::
Layout
;
use
account_db
::
Factory
as
AccountFactory
;
use
evm
::{
Factory
as
EvmFactory
,
VMType
};
use
evm
::{
Factory
as
EvmFactory
};
use
vm
::{
Exec
,
ActionParams
,
VersionedSchedule
,
Schedule
};
use
wasm
::
WasmInterpreter
;
...
...
@@ -49,14 +49,14 @@ impl VmFactory {
}
}
pub
fn
new
(
evm
:
VMType
,
cache_size
:
usize
)
->
Self
{
VmFactory
{
evm
:
EvmFactory
::
new
(
evm
,
cache_size
)
}
pub
fn
new
(
cache_size
:
usize
)
->
Self
{
VmFactory
{
evm
:
EvmFactory
::
new
(
cache_size
)
}
}
}
impl
From
<
EvmFactory
>
for
VmFactory
{
fn
from
(
evm
:
EvmFactory
)
->
Self
{
VmFactory
{
evm
:
evm
}
VmFactory
{
evm
}
}
}
...
...
parity/blockchain.rs
View file @
c5e96259
...
...
@@ -28,7 +28,7 @@ use bytes::ToPretty;
use
rlp
::
PayloadInfo
;
use
client_traits
::{
BlockChainReset
,
Nonce
,
Balance
,
BlockChainClient
,
ImportExportBlocks
};
use
ethcore
::{
client
::{
DatabaseCompactionProfile
,
VMType
},
client
::{
DatabaseCompactionProfile
},
miner
::
Miner
,
};
use
ethcore_service
::
ClientService
;
...
...
@@ -92,7 +92,6 @@ pub struct ImportBlockchain {
pub
compaction
:
DatabaseCompactionProfile
,
pub
tracing
:
Switch
,
pub
fat_db
:
Switch
,
pub
vm_type
:
VMType
,
pub
check_seal
:
bool
,
pub
with_color
:
bool
,
pub
verifier_settings
:
VerifierSettings
,
...
...
@@ -351,7 +350,6 @@ fn execute_import(cmd: ImportBlockchain) -> Result<(), String> {
tracing
,
fat_db
,
cmd
.compaction
,
cmd
.vm_type
,
""
.into
(),
algorithm
,
cmd
.pruning_history
,
...
...
@@ -488,7 +486,6 @@ fn start_client(
tracing
,
fat_db
,
compaction
,
VMType
::
default
(),
""
.into
(),
algorithm
,
pruning_history
,
...
...
parity/configuration.rs
View file @
c5e96259
...
...
@@ -29,7 +29,6 @@ use bytes::Bytes;
use
ansi_term
::
Colour
;
use
sync
::{
NetworkConfiguration
,
validate_node_url
,
self
};
use
parity_crypto
::
publickey
::{
Secret
,
Public
};
use
ethcore
::
client
::
VMType
;
use
ethcore
::
miner
::{
stratum
,
MinerOptions
};
use
snapshot
::
SnapshotConfiguration
;
use
miner
::
pool
;
...
...
@@ -120,7 +119,6 @@ impl Configuration {
let
dirs
=
self
.directories
();
let
pruning
=
self
.args.arg_pruning
.parse
()
?
;
let
pruning_history
=
self
.args.arg_pruning_history
;
let
vm_type
=
self
.vm_type
()
?
;
let
spec
=
self
.chain
()
?
;
let
mode
=
match
self
.args.arg_mode
.as_ref
()
{
"last"
=>
None
,
...
...
@@ -259,7 +257,6 @@ impl Configuration {
compaction
:
compaction
,
tracing
:
tracing
,
fat_db
:
fat_db
,
vm_type
:
vm_type
,
check_seal
:
!
self
.args.flag_no_seal_check
,
with_color
:
logger_config
.color
,
verifier_settings
:
self
.verifier_settings
(),
...
...
@@ -394,7 +391,6 @@ impl Configuration {
tracing
:
tracing
,
fat_db
:
fat_db
,
compaction
:
compaction
,
vm_type
:
vm_type
,
warp_sync
:
warp_sync
,
warp_barrier
:
self
.args.arg_warp_barrier
,
geth_compatibility
:
geth_compatibility
,
...
...
@@ -430,10 +426,6 @@ impl Configuration {
})
}
fn
vm_type
(
&
self
)
->
Result
<
VMType
,
String
>
{
Ok
(
VMType
::
Interpreter
)
}
fn
miner_extras
(
&
self
)
->
Result
<
MinerExtras
,
String
>
{
let
floor
=
to_u256
(
&
self
.args.arg_gas_floor_target
)
?
;
let
ceil
=
to_u256
(
&
self
.args.arg_gas_cap
)
?
;
...
...
@@ -1204,7 +1196,6 @@ mod tests {
use
std
::
str
::
FromStr
;
use
tempdir
::
TempDir
;
use
ethcore
::
client
::
VMType
;
use
ethcore
::
miner
::
MinerOptions
;
use
miner
::
pool
::
PrioritizationStrategy
;
use
parity_rpc
::
NetworkSettings
;
...
...
@@ -1309,7 +1300,6 @@ mod tests {
compaction
:
Default
::
default
(),
tracing
:
Default
::
default
(),
fat_db
:
Default
::
default
(),
vm_type
:
VMType
::
Interpreter
,
check_seal
:
true
,
with_color
:
!
cfg!
(
windows
),
verifier_settings
:
Default
::
default
(),
...
...
@@ -1462,7 +1452,6 @@ mod tests {
mode
:
Default
::
default
(),
tracing
:
Default
::
default
(),
compaction
:
Default
::
default
(),
vm_type
:
Default
::
default
(),
geth_compatibility
:
false
,
experimental_rpcs
:
false
,
net_settings
:
Default
::
default
(),
...
...
parity/helpers.rs
View file @
c5e96259
...
...
@@ -21,7 +21,7 @@ use std::fs::File;
use
std
::
collections
::
HashSet
;
use
ethereum_types
::{
U256
,
Address
};
use
journaldb
::
Algorithm
;
use
ethcore
::
client
::{
VMType
,
DatabaseCompactionProfile
,
ClientConfig
};
use
ethcore
::
client
::{
DatabaseCompactionProfile
,
ClientConfig
};
use
ethcore
::
miner
::{
PendingSet
,
Penalization
};
use
verification
::
VerifierType
;
use
miner
::
pool
::
PrioritizationStrategy
;
...
...
@@ -232,7 +232,6 @@ pub fn to_client_config(
tracing
:
bool
,
fat_db
:
bool
,
compaction
:
DatabaseCompactionProfile
,
vm_type
:
VMType
,
name
:
String
,
pruning
:
Algorithm
,
pruning_history
:
u64
,
...
...
@@ -268,7 +267,6 @@ pub fn to_client_config(
client_config
.pruning
=
pruning
;
client_config
.history
=
pruning_history
;
client_config
.db_compaction
=
compaction
;
client_config
.vm_type
=
vm_type
;
client_config
.name
=
name
;
client_config
.verifier_type
=
if
check_seal
{
VerifierType
::
Canon
}
else
{
VerifierType
::
CanonNoSeal
};
client_config
.spec_name
=
spec_name
;
...
...
parity/run.rs
View file @
c5e96259
...
...
@@ -21,7 +21,7 @@ use std::thread;
use
ansi_term
::
Colour
;
use
client_traits
::{
BlockInfo
,
BlockChainClient
};
use
ethcore
::
client
::{
Client
,
DatabaseCompactionProfile
,
VMType
};
use
ethcore
::
client
::{
Client
,
DatabaseCompactionProfile
};
use
ethcore
::
miner
::{
self
,
stratum
,
Miner
,
MinerService
,
MinerOptions
};
use
snapshot
::{
self
,
SnapshotConfiguration
};
use
spec
::
SpecParams
;
...
...
@@ -113,7 +113,6 @@ pub struct RunCmd {
pub
tracing
:
Switch
,
pub
fat_db
:
Switch
,
pub
compaction
:
DatabaseCompactionProfile
,
pub
vm_type
:
VMType
,
pub
geth_compatibility
:
bool
,
pub
experimental_rpcs
:
bool
,
pub
net_settings
:
NetworkSettings
,
...
...
@@ -524,7 +523,6 @@ fn execute_impl<Cr, Rr>(cmd: RunCmd, logger: Arc<RotatingLogger>, on_client_rq:
tracing
,
fat_db
,
cmd
.compaction
,
cmd
.vm_type
,
cmd
.name
,
algorithm
,
cmd
.pruning_history
,
...
...
parity/snapshot_cmd.rs
View file @
c5e96259
...
...
@@ -24,7 +24,7 @@ use hash::keccak;
use
snapshot
::{
SnapshotConfiguration
,
SnapshotService
as
SS
,
SnapshotClient
};
use
snapshot
::
io
::{
SnapshotReader
,
PackedReader
,
PackedWriter
};
use
snapshot
::
service
::
Service
as
SnapshotService
;
use
ethcore
::
client
::{
Client
,
DatabaseCompactionProfile
,
VMType
};
use
ethcore
::
client
::{
Client
,
DatabaseCompactionProfile
};
use
ethcore
::
miner
::
Miner
;
use
ethcore_service
::
ClientService
;
use
parking_lot
::
RwLock
;
...
...
@@ -180,7 +180,6 @@ impl SnapshotCommand {
tracing
,
fat_db
,
self
.compaction
,
VMType
::
default
(),
""
.into
(),
algorithm
,
self
.pruning_history
,
...
...
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