Skip to content

Commit

Permalink
fix conflicting struct name
Browse files Browse the repository at this point in the history
  • Loading branch information
EvgenijM86 committed May 13, 2019
1 parent 6434190 commit 618cf11
Showing 1 changed file with 4 additions and 4 deletions.
8 changes: 4 additions & 4 deletions src/qt/mintingtablemodel.cpp
Expand Up @@ -234,11 +234,11 @@ class MintingTablePriv

};

struct TransactionNotification
struct TransactionNotification2
{
public:
TransactionNotification() {}
TransactionNotification(uint256 _hash, ChangeType _status):
TransactionNotification2() {}
TransactionNotification2(uint256 _hash, ChangeType _status):
hash(_hash), status(_status) {}

void invoke(QObject *ttm)
Expand All @@ -255,7 +255,7 @@ struct TransactionNotification

static void NotifyTransactionChanged(MintingTableModel *ttm, CWallet *wallet, const uint256 &hash, ChangeType status)
{
TransactionNotification notification(hash, status);
TransactionNotification2 notification(hash, status);
notification.invoke(ttm);
}

Expand Down

0 comments on commit 618cf11

Please sign in to comment.