Skip to content

Commit

Permalink
Fix build
Browse files Browse the repository at this point in the history
  • Loading branch information
asdacap committed Nov 4, 2024
1 parent 2253477 commit 4256bf2
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -15,7 +15,7 @@ public interface ISnapProvider

bool CanSync();

AddRangeResult AddAccountRange(AccountRange request, AccountsAndProofs response, PeerInfo? peerInfo = null);
AddRangeResult AddAccountRange(AccountRange request, AccountsAndProofs response);

AddRangeResult AddStorageRange(StorageRange request, SlotsAndProofs response);

Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -72,7 +72,7 @@ public override SyncResponseHandlingResult HandleResponse(SnapSyncBatch? batch,
{
if (batch.AccountRangeResponse is not null)
{
result = _snapProvider.AddAccountRange(batch.AccountRangeRequest, batch.AccountRangeResponse, peer);
result = _snapProvider.AddAccountRange(batch.AccountRangeRequest, batch.AccountRangeResponse);
}
else if (batch.StorageRangeResponse is not null)
{
Expand Down

0 comments on commit 4256bf2

Please sign in to comment.