Properly delete addresses/contracts in addressbook (#3739)

* Remove previously market addresses at startup

* Remove meta.deleted checks

* Remove artifact from code move
This commit is contained in:
Jaco Greeff
2016-12-08 15:54:23 +01:00
committed by GitHub
parent d38da1f3b4
commit a1fb1240a7
11 changed files with 36 additions and 15 deletions

View File

@@ -229,7 +229,7 @@ class Contract extends Component {
return (
<Actionbar
title='Contract Information'
buttons={ !account || account.meta.deleted ? [] : buttons } />
buttons={ !account ? [] : buttons } />
);
}