style: style

This commit is contained in:
2021-01-01 22:28:04 +08:00
parent 24150ca0f1
commit 602e14071b
13 changed files with 38 additions and 33 deletions

View File

@@ -1,10 +1,10 @@
use std::fs;
use clap::{App, Arg, ArgMatches, SubCommand};
use rust_util::information;
use crate::{cmd::{Command, CommandError}, engine_credit::CreditContractCreateParameters};
use crate::engine::ContractEngine;
use crate::tx::{Transaction, TransactionBody};
use crate::cmd::{Command, CommandError};
use crate::util::JsonKeyPair;
use crate::tx::{Transaction, TransactionBody};
use crate::engine::ContractEngine;
use crate::engine_plugin_credit::CreditContractCreateParameters;
pub struct CommandImpl;
impl Command for CommandImpl {