Move SystemTransaction into its own module

This commit is contained in:
Greg Fitzgerald
2018-09-26 10:07:53 -06:00
parent be20c99758
commit c83dcea87d
16 changed files with 211 additions and 183 deletions

View File

@@ -4,7 +4,8 @@ use entry::Entry;
use hash::{hash, Hash};
use ring::rand::SystemRandom;
use signature::{Keypair, KeypairUtil, Pubkey};
use transaction::{SystemTransaction, Transaction};
use system_transaction::SystemTransaction;
use transaction::Transaction;
use untrusted::Input;
#[derive(Serialize, Deserialize, Debug)]