Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Make Swarm constructor have BlockChain<T> #324

Merged
merged 3 commits into from
Jul 3, 2019
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
7 changes: 7 additions & 0 deletions CHANGES.md
Original file line number Diff line number Diff line change
Expand Up @@ -36,6 +36,12 @@ To be released.
Instead, a newly added static class `StoreExtension` provides
an extension method of the same name.
- Added `IStore.IterateStateReferences()` method.
- `Swarm` constructor became to receive `BlockChain<T>`. [[#324]]
- `Swarm` became to have type parameter `T` to represent an action type as
like as `BlockChain<T>`. [[#324]]
- Methods in `Swarm` that had taken a parameter of `BlockChain<T>` type
became to neither longer take `BlockChain<T>` nor a generic method.
Because the `Swarm` constructor takes it instead. [[#324]]

### Added interfaces

Expand Down Expand Up @@ -120,6 +126,7 @@ To be released.
[#310]: https://github.com/planetarium/libplanet/pull/310
[#311]: https://github.com/planetarium/libplanet/pull/311
[#317]: https://github.com/planetarium/libplanet/pull/317
[#324]: https://github.com/planetarium/libplanet/pull/324


Version 0.3.0
Expand Down
Loading