Skip to content

Commit

Permalink
Changelog
Browse files Browse the repository at this point in the history
  • Loading branch information
greymistcube committed Sep 6, 2024
1 parent eb170de commit 38e8381
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 1 deletion.
2 changes: 2 additions & 0 deletions CHANGES.md
Original file line number Diff line number Diff line change
Expand Up @@ -24,6 +24,7 @@ To be released.
[[#3942]]
- (Libplanet.Net) Changed `BlockHashDownloadState` and `BlockDownloadState`
to be `Obsolete`. [[#3943]]
- Removed `Fork()` method from `BlockChain`. [[#3948]]

### Backward-incompatible network protocol changes

Expand Down Expand Up @@ -55,6 +56,7 @@ To be released.
[#3934]: https://github.com/planetarium/libplanet/pull/3934
[#3942]: https://github.com/planetarium/libplanet/pull/3942
[#3943]: https://github.com/planetarium/libplanet/pull/3943
[#3948]: https://github.com/planetarium/libplanet/pull/3948


Version 5.2.2
Expand Down
2 changes: 1 addition & 1 deletion src/Libplanet/Blockchain/Renderers/IRenderer.cs
Original file line number Diff line number Diff line change
Expand Up @@ -20,7 +20,7 @@ public interface IRenderer
/// a <see cref="BlockChain"/> (so that its <see cref="BlockChain.Tip"/> has changed).
/// </summary>
/// <remarks>It is guaranteed to be called only once for a block, and only after applied to
/// the blockchain, unless it has been stale due to reorg.</remarks>
/// the blockchain.</remarks>
/// <param name="oldTip">The previous <see cref="BlockChain.Tip"/>.</param>
/// <param name="newTip">The current <see cref="BlockChain.Tip"/>.</param>
void RenderBlock(Block oldTip, Block newTip);
Expand Down

0 comments on commit 38e8381

Please sign in to comment.