From 715aca87d5d2514e39592b0f479a00169f95e586 Mon Sep 17 00:00:00 2001 From: Gareth Kirwan Date: Fri, 12 Jul 2024 08:32:35 +0700 Subject: [PATCH] fixup! Subscriptions: Add batching to templates --- exchanges/subscription/template.go | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/exchanges/subscription/template.go b/exchanges/subscription/template.go index 0cb69a42221..f3d929e4f3e 100644 --- a/exchanges/subscription/template.go +++ b/exchanges/subscription/template.go @@ -23,7 +23,7 @@ var ( errInvalidAssetExpandPairs = errors.New("subscription template containing PairSeparator with must contain either specific Asset or AssetSeparator") errAssetRecords = errors.New("subscription template did not generate the expected number of asset records") errPairRecords = errors.New("subscription template did not generate the expected number of pair records") - errBatchSize = errors.New("Invalid BatchSize") + errBatchSize = errors.New("invalid BatchSize") errAssetTemplateWithoutAll = errors.New("sub.Asset must be set to All if AssetSeparator is used in Channel template") errNoTemplateContent = errors.New("subscription template did not generate content") errInvalidTemplate = errors.New("GetSubscriptionTemplate did not return a template")