Cleanup client traits and create super trait (#3728)

This commit is contained in:
Jack May
2019-04-11 00:25:14 -07:00
committed by GitHub
parent 4b6c0198ad
commit d0f46d6a8a
22 changed files with 153 additions and 115 deletions

View File

@ -28,8 +28,8 @@ mod bpf {
mod bpf_c {
use super::*;
use solana_sdk::bpf_loader;
use solana_sdk::client::SyncClient;
use solana_sdk::signature::KeypairUtil;
use solana_sdk::sync_client::SyncClient;
use std::io::Read;
#[test]
@ -100,8 +100,8 @@ mod bpf {
#[cfg(feature = "bpf_rust")]
mod bpf_rust {
use super::*;
use solana_sdk::client::SyncClient;
use solana_sdk::signature::KeypairUtil;
use solana_sdk::sync_client::SyncClient;
use std::io::Read;
#[test]