Skip to content

Commit

Permalink
Add StoreTracker params
Browse files Browse the repository at this point in the history
Co-Authored-By: Hong Minhee <hong.minhee@gmail.com>
  • Loading branch information
earlbread and dahlia committed Aug 13, 2019
1 parent 1c76984 commit 69e6132
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions Libplanet.Tests/Store/StoreTracker.cs
Expand Up @@ -123,8 +123,8 @@ public IEnumerable<HashDigest<SHA256>> IterateBlockHashes()
int offset,
int? limit)
{
_logs.Add((nameof(IterateIndex), @namespace, null));
return _store.IterateIndex(@namespace, offset, limit);
_logs.Add((nameof(IterateIndex), @namespace, (offset, limit)));
return _store.IterateIndex(@namespace, offset, limit);
}

public IEnumerable<TxId> IterateStagedTransactionIds(bool toBroadcast)
Expand Down

0 comments on commit 69e6132

Please sign in to comment.