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

Remove unneeded BatchManager references #850

Merged
merged 1 commit into from
Jun 20, 2022
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
2 changes: 0 additions & 2 deletions internal/broadcast/manager.go
Original file line number Diff line number Diff line change
Expand Up @@ -68,7 +68,6 @@ type broadcastManager struct {
blockchain blockchain.Plugin
exchange dataexchange.Plugin
sharedstorage sharedstorage.Plugin
batch batch.Manager
syncasync syncasync.Bridge
batchpin batchpin.Submitter
maxBatchPayloadLength int64
Expand All @@ -88,7 +87,6 @@ func NewBroadcastManager(ctx context.Context, di database.Plugin, im identity.Ma
blockchain: bi,
exchange: dx,
sharedstorage: si,
batch: ba,
syncasync: sa,
batchpin: bp,
maxBatchPayloadLength: config.GetByteSize(coreconfig.BroadcastBatchPayloadLimit),
Expand Down
2 changes: 0 additions & 2 deletions internal/privatemessaging/privatemessaging.go
Original file line number Diff line number Diff line change
Expand Up @@ -67,7 +67,6 @@ type privateMessaging struct {
identity identity.Manager
exchange dataexchange.Plugin
blockchain blockchain.Plugin
batch batch.Manager
data data.Manager
syncasync syncasync.Bridge
batchpin batchpin.Submitter
Expand Down Expand Up @@ -97,7 +96,6 @@ func NewPrivateMessaging(ctx context.Context, di database.Plugin, im identity.Ma
identity: im,
exchange: dx,
blockchain: bi,
batch: ba,
data: dm,
syncasync: sa,
batchpin: bp,
Expand Down