Skip to content

Commit 8522ef9

Browse files
Move stats_change processor from ingest/ to services/horizon/internal (#5698)
* Move stats_change processor from ingest/ to services/horizon/internal Additionally, the directories in top-level processors/ have been renamed and the _processor has been removed from the name, since it is redundant. This also makes the dirname conform with the name of the package that they house. * reorder imports
1 parent 2b9ed5d commit 8522ef9

File tree

75 files changed

+77
-75
lines changed

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

75 files changed

+77
-75
lines changed
Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -7,7 +7,7 @@ import (
77
"github.com/guregu/null"
88
"github.com/guregu/null/zero"
99
"github.com/stellar/go/ingest"
10-
utils "github.com/stellar/go/processors/processor_utils"
10+
"github.com/stellar/go/processors/utils"
1111
"github.com/stellar/go/xdr"
1212
)
1313

processors/account_processor/account_signer.go renamed to processors/account/account_signer.go

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -7,7 +7,7 @@ import (
77

88
"github.com/guregu/null"
99
"github.com/stellar/go/ingest"
10-
utils "github.com/stellar/go/processors/processor_utils"
10+
"github.com/stellar/go/processors/utils"
1111
"github.com/stellar/go/xdr"
1212
)
1313

File renamed without changes.
File renamed without changes.
Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@ import (
44
"fmt"
55
"time"
66

7-
utils "github.com/stellar/go/processors/processor_utils"
7+
"github.com/stellar/go/processors/utils"
88
"github.com/stellar/go/toid"
99
"github.com/stellar/go/xdr"
1010
)
Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -8,7 +8,7 @@ import (
88
"github.com/stretchr/testify/assert"
99

1010
"github.com/stellar/go/ingest"
11-
utils "github.com/stellar/go/processors/processor_utils"
11+
"github.com/stellar/go/processors/utils"
1212
"github.com/stellar/go/xdr"
1313
)
1414

processors/claimable_balance_processor/claimable_balance.go renamed to processors/claimable_balance/claimable_balance.go

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -6,8 +6,8 @@ import (
66

77
"github.com/guregu/null"
88
"github.com/stellar/go/ingest"
9-
asset "github.com/stellar/go/processors/asset_processor"
10-
utils "github.com/stellar/go/processors/processor_utils"
9+
asset "github.com/stellar/go/processors/asset"
10+
"github.com/stellar/go/processors/utils"
1111
"github.com/stellar/go/xdr"
1212
)
1313

processors/claimable_balance_processor/claimable_balance_test.go renamed to processors/claimable_balance/claimable_balance_test.go

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,7 @@ import (
66

77
"github.com/guregu/null"
88
"github.com/stellar/go/ingest"
9-
utils "github.com/stellar/go/processors/processor_utils"
9+
"github.com/stellar/go/processors/utils"
1010
"github.com/stellar/go/xdr"
1111
"github.com/stretchr/testify/assert"
1212
)

processors/config_setting_processor/config_setting.go renamed to processors/config_setting/config_setting.go

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,7 @@ import (
66
"time"
77

88
"github.com/stellar/go/ingest"
9-
utils "github.com/stellar/go/processors/processor_utils"
9+
"github.com/stellar/go/processors/utils"
1010
"github.com/stellar/go/xdr"
1111
)
1212

File renamed without changes.

0 commit comments

Comments
 (0)