Skip to content

Commit 2582ecf

Browse files
committed
fixup: for masternode args_for change
1 parent 872e461 commit 2582ecf

File tree

1 file changed

+2
-1
lines changed

1 file changed

+2
-1
lines changed

divi/qa/rpc-tests/masternode.py

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -6,6 +6,7 @@
66

77
from test_framework import BitcoinTestFramework
88
from util import *
9+
import copy
910
import time
1011

1112

@@ -167,7 +168,7 @@ def wait_for_mnsync_on_nodes (self, updateMockTime = False):
167168
def args_for(self, n):
168169
"""Returns the arguments to use for node n. Defaults to the base args
169170
but can be overridden as needed."""
170-
return self.base_args
171+
return copy.deepcopy(self.base_args)
171172

172173
def stop_masternode_daemons(self):
173174
def stop_masternode(nodeIndex):

0 commit comments

Comments
 (0)