break dependency of programs on solana core (#1371)

* break dependency of programs on Solana core
This commit is contained in:
jackcmay
2018-09-27 07:49:26 -07:00
committed by GitHub
parent 874addc51a
commit 9c47e022dc
44 changed files with 95 additions and 66 deletions

View File

@@ -3,17 +3,17 @@
//! messages to the network directly. The binary encoding of its messages are
//! unstable and may change in future releases.
use account::Account;
use bank::Bank;
use bincode::{deserialize, serialize};
use crdt::{Crdt, CrdtError, NodeInfo};
use hash::Hash;
use log::Level;
use ncp::Ncp;
use pubkey::Pubkey;
use request::{Request, Response};
use result::{Error, Result};
use signature::{Keypair, Signature};
use solana_program_interface::account::Account;
use solana_program_interface::pubkey::Pubkey;
use std;
use std::collections::HashMap;
use std::io;