f NotificationsList
This commit is contained in:
parent
a78a5b750a
commit
cebc55df44
|
@ -14,6 +14,10 @@ export function NotificationsList() {
|
|||
{notifications.map((notification) => {
|
||||
if ('receipt' in notification) {
|
||||
return notification.receipt.logs.map((log) => {
|
||||
if (log.address !== votingContract.address) {
|
||||
return
|
||||
}
|
||||
|
||||
// this needs to be updated so it takes into account also interface of featuredVotingContract
|
||||
const parsedLog = votingContract.interface.parseLog(log)
|
||||
|
||||
|
|
Loading…
Reference in New Issue