Browse Source

fix(channels): fetch channels after peer connections

renovate/lint-staged-8.x
Jack Mallers 6 years ago
parent
commit
6a7ed61ef3
  1. 3
      app/components/Activity/Activity.js

3
app/components/Activity/Activity.js

@ -41,6 +41,9 @@ class Activity extends Component {
fetchInvoices()
fetchTransactions()
fetchChannels()
// HACK: wait 10 seconds and fetch channels again, allowing the node to establish connections with the remote party
setTimeout(() => fetchChannels(), 10000)
}
renderActivity(activity) {

Loading…
Cancel
Save