You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
runEnv.RecordMessage("Sent payment of %d wei to %s using channel %s", paymentAmount.Int64(), utils.Abbreviate(randomPayee.Address), utils.Abbreviate(channelId))
145
+
runEnv.RecordMessage("Opened virtual channel %s with %s using hubs %s", utils.Abbreviate(channelId), utils.Abbreviate(randomPayee.Address), utils.AbbreviateSlice(selectedHubs))
151
146
152
-
// TODO: Should we wait for receipt of this payment before stopping the time_to_first_payment timer?
153
-
})
147
+
paymentAmount:=big.NewInt(utils.KWEI_IN_WEI)
148
+
nClient.Pay(r.ChannelId, paymentAmount)
149
+
runEnv.RecordMessage("Sent payment of %d wei to %s using channel %s", paymentAmount.Int64(), utils.Abbreviate(randomPayee.Address), utils.Abbreviate(channelId))
154
150
151
+
// TODO: Should we wait for receipt of this payment before stopping the time_to_first_payment timer?
0 commit comments