Forgot to update seed address as well.

This commit is contained in:
Ignotus Peverell 2017-02-19 11:08:57 -08:00
parent ca04327922
commit 78b223b4f0
No known key found for this signature in database
GPG key ID: 99CD25F39F8F8211

View file

@ -126,7 +126,7 @@ fn simulate_seeding() {
db_root: format!("target/grin-seed-{}", n), db_root: format!("target/grin-seed-{}", n),
cuckoo_size: 12, cuckoo_size: 12,
p2p_config: p2p::P2PConfig{port: 12000+n, ..p2p::P2PConfig::default()}, p2p_config: p2p::P2PConfig{port: 12000+n, ..p2p::P2PConfig::default()},
seeding_type: grin::Seeding::List(vec!["127.0.0.1:10000".to_string()]), seeding_type: grin::Seeding::List(vec!["127.0.0.1:12000".to_string()]),
..Default::default() ..Default::default()
}, &handle).unwrap(); }, &handle).unwrap();
servers.push(s); servers.push(s);