plan.rs -> payment_plan.rs

This commit is contained in:
Greg Fitzgerald
2018-05-29 13:55:21 -06:00
parent d2622b7798
commit ac0791826a
5 changed files with 4 additions and 4 deletions

View File

@ -9,7 +9,7 @@ use chrono::prelude::*;
use entry::Entry; use entry::Entry;
use hash::Hash; use hash::Hash;
use mint::Mint; use mint::Mint;
use plan::{Payment, PaymentPlan, Witness}; use payment_plan::{Payment, PaymentPlan, Witness};
use rayon::prelude::*; use rayon::prelude::*;
use signature::{KeyPair, PublicKey, Signature}; use signature::{KeyPair, PublicKey, Signature};
use std::collections::hash_map::Entry::Occupied; use std::collections::hash_map::Entry::Occupied;

View File

@ -11,7 +11,7 @@ use pnet::datalink;
use solana::bank::Bank; use solana::bank::Bank;
use solana::crdt::ReplicatedData; use solana::crdt::ReplicatedData;
use solana::entry::Entry; use solana::entry::Entry;
use solana::plan::PaymentPlan; use solana::payment_plan::PaymentPlan;
use solana::server::Server; use solana::server::Server;
use solana::signature::{KeyPair, KeyPairUtil}; use solana::signature::{KeyPair, KeyPairUtil};
use solana::transaction::Instruction; use solana::transaction::Instruction;

View File

@ -13,7 +13,7 @@ pub mod ledger;
pub mod logger; pub mod logger;
pub mod mint; pub mod mint;
pub mod packet; pub mod packet;
pub mod plan; pub mod payment_plan;
pub mod record_stage; pub mod record_stage;
pub mod recorder; pub mod recorder;
pub mod replicate_stage; pub mod replicate_stage;

View File

@ -4,7 +4,7 @@ use bincode::serialize;
use budget::{Budget, Condition}; use budget::{Budget, Condition};
use chrono::prelude::*; use chrono::prelude::*;
use hash::Hash; use hash::Hash;
use plan::{Payment, PaymentPlan, Witness}; use payment_plan::{Payment, PaymentPlan, Witness};
use signature::{KeyPair, KeyPairUtil, PublicKey, Signature, SignatureUtil}; use signature::{KeyPair, KeyPairUtil, PublicKey, Signature, SignatureUtil};
pub const SIGNED_DATA_OFFSET: usize = 112; pub const SIGNED_DATA_OFFSET: usize = 112;