Skip to content

Commit

Permalink
fix: when a v1 transfer of a new token quickly follows a v1 signup (t…
Browse files Browse the repository at this point in the history
…he token creation), then the transfer might got lost.
  • Loading branch information
jaensen committed Dec 20, 2024
1 parent 5d35c7d commit 45448be
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 3 deletions.
2 changes: 1 addition & 1 deletion Circles.Index/BlockIndexer.cs
Original file line number Diff line number Diff line change
Expand Up @@ -138,7 +138,7 @@ private async Task Sink((BlockWithReceipts, IEnumerable<IIndexEvent>) data)

return (blockWithReceipts, events);
},
CreateOptions(cancellationToken, Environment.ProcessorCount));
CreateOptions(cancellationToken, 1, 1));

receiptsSourceBlock.LinkTo(parserBlock, new DataflowLinkOptions { PropagateCompletion = true });

Expand Down
4 changes: 2 additions & 2 deletions Circles.Index/Circles.Index.csproj
Original file line number Diff line number Diff line change
Expand Up @@ -8,8 +8,8 @@
<Authors>Daniel Janz (Gnosis Service GmbH)</Authors>
<Copyright>Gnosis Service GmbH</Copyright>
<Product>Circles</Product>
<AssemblyVersion>1.11.6</AssemblyVersion>
<FileVersion>1.11.6</FileVersion>
<AssemblyVersion>1.11.7</AssemblyVersion>
<FileVersion>1.11.7</FileVersion>
</PropertyGroup>


Expand Down

0 comments on commit 45448be

Please sign in to comment.