Skip to content
This repository was archived by the owner on Mar 28, 2023. It is now read-only.

Commit 2452072

Browse files
committed
Fix bugs calling start_node
1 parent ee897d6 commit 2452072

14 files changed

+14
-14
lines changed

qa/cancel_direct_offline.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -149,7 +149,7 @@ def run_test(self):
149149
raise TestFailure("CancelDirectOfflineTest - FAIL: Bob failed to detect outgoing payment")
150150

151151
# startup alice again
152-
self.start_node(alice)
152+
self.start_node(1, alice)
153153
self.send_bitcoin_cmd("generatetoaddress", 1, self.bitcoin_address)
154154
time.sleep(45)
155155

qa/chat_offline.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -67,7 +67,7 @@ def run_test(self):
6767
raise TestFailure("ChatOfflineTest - FAIL: Did not record new conversation")
6868

6969
# startup bob again
70-
self.start_node(bob)
70+
self.start_node(2, bob)
7171
time.sleep(45)
7272

7373
# check bob saved message correctly

qa/eth_cancel_direct_offline.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -147,7 +147,7 @@ def run_test(self):
147147
raise TestFailure("EthCancelDirectOfflineTest - FAIL: Bob failed to save as canceled")
148148

149149
# startup alice again
150-
self.start_node(alice)
150+
self.start_node(1, alice)
151151
time.sleep(160)
152152

153153
# check alice detected order

qa/eth_purchase_direct_offline.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -129,7 +129,7 @@ def run_test(self):
129129

130130

131131
# startup alice again
132-
self.start_node(alice)
132+
self.start_node(1, alice)
133133
time.sleep(60)
134134

135135
# check alice detected order and payment

qa/eth_purchase_moderated_offline.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -155,7 +155,7 @@ def run_test(self):
155155
raise TestFailure("EthPurchaseModeratedOfflineTest - FAIL: Bob purchase saved in incorrect state")
156156

157157
# startup alice again
158-
self.start_node(alice)
158+
self.start_node(1, alice)
159159
time.sleep(80)
160160

161161
# check alice detected order and payment

qa/eth_purchase_offline_error.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -100,7 +100,7 @@ def run_test(self):
100100
raise TestFailure("EthPurchaseOfflineErrorTest - FAIL: Bob incorrectly saved as funded")
101101

102102
# startup alice again
103-
self.start_node(alice)
103+
self.start_node(1, alice)
104104
time.sleep(45)
105105

106106
# check alice detected processing error

qa/eth_reject_direct_offline.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -128,7 +128,7 @@ def run_test(self):
128128
raise TestFailure("EthRejectDirectOfflineTest - FAIL: Bob purchase saved in incorrect state")
129129

130130
# startup alice again
131-
self.start_node(alice)
131+
self.start_node(1, alice)
132132
time.sleep(60)
133133

134134
# alice reject order

qa/eth_reject_moderated_offline.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -156,7 +156,7 @@ def run_test(self):
156156

157157

158158
# startup alice again
159-
self.start_node(alice)
159+
self.start_node(1, alice)
160160
time.sleep(45)
161161

162162
# alice reject order

qa/out_of_inventory.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -131,7 +131,7 @@ def run_test(self):
131131
self.send_bitcoin_cmd("generate", 1)
132132

133133
# startup alice again
134-
self.start_node(alice)
134+
self.start_node(1, alice)
135135
time.sleep(45)
136136

137137
# check alice detected order and payment

qa/purchase_direct_offline.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -130,7 +130,7 @@ def run_test(self):
130130
self.send_bitcoin_cmd("generate", 1)
131131

132132
# startup alice again
133-
self.start_node(alice)
133+
self.start_node(1, alice)
134134
time.sleep(60)
135135

136136
# check alice detected order and payment

0 commit comments

Comments
 (0)