d7a958129f
* [evmbin] Omit storage output, now for std-json * fix tests
41 lines
1.2 KiB
Rust
41 lines
1.2 KiB
Rust
// Copyright 2015-2020 Parity Technologies (UK) Ltd.
|
|
// This file is part of OpenEthereum.
|
|
|
|
// OpenEthereum 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.
|
|
|
|
// OpenEthereum 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 OpenEthereum. If not, see <http://www.gnu.org/licenses/>.
|
|
|
|
//! Config used by display informants
|
|
|
|
#[derive(Default, Copy, Clone, Debug)]
|
|
pub struct Config {
|
|
omit_storage_output: bool,
|
|
omit_memory_output: bool,
|
|
}
|
|
|
|
impl Config {
|
|
pub fn new(omit_storage_output: bool, omit_memory_output: bool) -> Config {
|
|
Config {
|
|
omit_storage_output,
|
|
omit_memory_output,
|
|
}
|
|
}
|
|
|
|
pub fn omit_storage_output(&self) -> bool {
|
|
self.omit_storage_output
|
|
}
|
|
|
|
pub fn omit_memory_output(&self) -> bool {
|
|
self.omit_memory_output
|
|
}
|
|
}
|