Browse Source

Merge pull request #503 from LN-Zap/fix/waiting_close_channels

fix(channels): correct property for waiting_close_channels object
renovate/lint-staged-8.x
JimmyMow 7 years ago
committed by GitHub
parent
commit
65fd034ce4
No known key found for this signature in database GPG Key ID: 4AEE18F83AFDEB23
  1. 2
      app/components/Contacts/Network.js

2
app/components/Contacts/Network.js

@ -130,7 +130,7 @@ class Network extends Component {
}
// if the channel is in waiting_close_channels phase
if (Object.prototype.hasOwnProperty.call(statusChannel, 'waiting_close_channels')) {
if (Object.prototype.hasOwnProperty.call(statusChannel, 'limbo_balance')) {
return 'closing'
}

Loading…
Cancel
Save