mirror of
https://github.com/mimblewimble/grin.git
synced 2025-02-01 17:01:09 +03:00
Missing mut for test config
This commit is contained in:
parent
3237df70f6
commit
fd08c34474
1 changed files with 1 additions and 1 deletions
|
@ -282,7 +282,7 @@ fn simulate_full_sync() {
|
|||
// instantiates 2 servers on different ports
|
||||
let mut servers = vec![];
|
||||
for n in 0..2 {
|
||||
let config = grin::ServerConfig {
|
||||
let mut config = grin::ServerConfig {
|
||||
db_root: format!("target/{}/grin-sync-{}", test_name_dir, n),
|
||||
p2p_config: Some(p2p::P2PConfig {
|
||||
port: 11000 + n,
|
||||
|
|
Loading…
Reference in a new issue