Skip to content

Commit acea3b5

Browse files
committed
TzKT v1.16.0: fixed incorrect test method naming
1 parent c85e740 commit acea3b5

File tree

2 files changed

+1
-3
lines changed

2 files changed

+1
-3
lines changed

tzkt/api/operations_test.go

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -7,7 +7,7 @@ import (
77
"github.com/stretchr/testify/require"
88
)
99

10-
func TestGetEndorsingRewards(t *testing.T) {
10+
func TestGetBakings(t *testing.T) {
1111
api := New("https://staging.api.tzkt.io")
1212

1313
bakings, err := api.GetBakings(t.Context(), map[string]string{

tzkt/events/tzkt.go

Lines changed: 0 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -345,8 +345,6 @@ func parseOperations(data []byte) (any, error) {
345345
result = append(result, &tzktData.AttestationReward{})
346346
case tzktData.KindBaking:
347347
result = append(result, &tzktData.Baking{})
348-
case tzktData.KindDoublePreendorsing:
349-
result = append(result, &tzktData.DoublePreendorsing{})
350348
case tzktData.KindIncreasePaidStorage:
351349
result = append(result, &tzktData.IncreasePaidStorage{})
352350
case tzktData.KindVdfRevelation:

0 commit comments

Comments
 (0)