Skip to content

Commit

Permalink
fix address error
Browse files Browse the repository at this point in the history
  • Loading branch information
rjnrohit committed Oct 15, 2024
1 parent 0f29bbf commit bb41884
Showing 1 changed file with 1 addition and 2 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,6 @@

using System;
using System.Collections.Generic;
using System.Data.SqlTypes;
using System.Linq;
using System.Security.Cryptography;
using Nethermind.Abi;
Expand Down Expand Up @@ -45,7 +44,7 @@ public IEnumerable<ExecutionRequest> ProcessDeposits(TxReceipt[] receipts, IRele
for (var j = 0; j < logEntries.Length; j++)
{
LogEntry log = logEntries[j];
if (log.LoggersAddress == spec.DepositContractAddress)
if (log.Address == spec.DepositContractAddress)
{
yield return DecodeDepositRequest(log);
}
Expand Down

0 comments on commit bb41884

Please sign in to comment.