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

@@ -8,8 +8,8 @@ use erasure;
use ledger::{reconstruct_entries_from_blobs, Block};
use log::Level;
use packet::{BlobRecycler, SharedBlob};
use pubkey::Pubkey;
use result::Result;
use solana_program_interface::pubkey::Pubkey;
use std::cmp;
use std::mem;
use std::net::SocketAddr;
@@ -450,7 +450,7 @@ pub fn new_window_from_entries(
#[cfg(test)]
mod test {
use packet::{Blob, BlobRecycler, Packet, Packets, PACKET_DATA_SIZE};
use pubkey::Pubkey;
use solana_program_interface::pubkey::Pubkey;
use std::io;
use std::io::Write;
use std::net::UdpSocket;