Storage transactions are now paid for by a system account (#4193)

* Pay program loading fees from a system account

* Pay transaction fees from a system account
This commit is contained in:
Michael Vines
2019-05-07 15:01:10 -07:00
committed by GitHub
parent d9e18a71ec
commit 55e3b7d380
5 changed files with 20 additions and 17 deletions

View File

@ -147,7 +147,6 @@ fn test_replicator_startup_2_nodes() {
#[test]
fn test_replicator_startup_leader_hang() {
use std::net::{IpAddr, Ipv4Addr, SocketAddr};
use std::time::Duration;
solana_logger::setup();
info!("starting replicator test");
@ -172,7 +171,6 @@ fn test_replicator_startup_leader_hang() {
leader_info,
replicator_keypair,
storage_keypair,
Some(Duration::from_secs(3)),
);
assert!(replicator_res.is_err());
@ -207,7 +205,6 @@ fn test_replicator_startup_ledger_hang() {
cluster.entry_point_info.clone(),
bad_keys,
storage_keypair,
Some(Duration::from_secs(3)),
);
assert!(replicator_res.is_err());