[qt] Remove excess logic
commite49b868cfe9391ec61b4fedef9811a4be265525d
authorpracticalswift <practicalswift@users.noreply.github.com>
Thu, 18 May 2017 16:35:06 +0000 (18 18:35 +0200)
committerpracticalswift <practicalswift@users.noreply.github.com>
Thu, 18 May 2017 18:48:14 +0000 (18 20:48 +0200)
tree69d430502d5fdb74a29596928ef123f3e486b45e
parent962cd3f0587e87de1e38c1777151dca282f3dd84
[qt] Remove excess logic

Replace …

```
if (foo) { return true; } else { return false; }
```

… with the equivalent …

```
return foo;
```
src/qt/walletmodel.cpp