From f60d839ae055adc9fc8cd0236173e215b859eb06 Mon Sep 17 00:00:00 2001 From: Artem Date: Sat, 10 Feb 2024 17:08:58 +0100 Subject: [PATCH] Fix: linter --- cmd/mempool/tzkt/data.go | 36 ------------------------------------ 1 file changed, 36 deletions(-) diff --git a/cmd/mempool/tzkt/data.go b/cmd/mempool/tzkt/data.go index e13b1af..aef4c37 100644 --- a/cmd/mempool/tzkt/data.go +++ b/cmd/mempool/tzkt/data.go @@ -9,42 +9,6 @@ import ( "github.com/dipdup-net/go-lib/tzkt/events" ) -var toNodeKinds = map[string]string{ - data.KindActivation: node.KindActivation, - data.KindBallot: node.KindBallot, - data.KindDelegation: node.KindDelegation, - data.KindDoubleBaking: node.KindDoubleBaking, - data.KindDoubleEndorsing: node.KindDoubleEndorsing, - data.KindEndorsement: node.KindEndorsement, - data.KindNonceRevelation: node.KindNonceRevelation, - data.KindOrigination: node.KindOrigination, - data.KindProposal: node.KindProposal, - data.KindReveal: node.KindReveal, - data.KindTransaction: node.KindTransaction, - data.KindRegisterGlobalConstant: node.KindRegisterGlobalConstant, - data.KindRollupDispatchTickets: node.KindTxRollupDispatchTickets, - data.KindRollupFinalizeCommitment: node.KindTxRollupFinalizeCommitment, - data.KindRollupReturnBond: node.KindTxRollupReturnBond, - data.KindRollupSubmitBatch: node.KindTxRollupSubmitBatch, - data.KindTransferTicket: node.KindTransferTicket, - data.KindTxRollupCommit: node.KindTxRollupCommit, - data.KindTxRollupOrigination: node.KindTxRollupOrigination, - data.KindTxRollupRejection: node.KindTxRollupRejection, - data.KindTxRollupRemoveCommitment: node.KindTxRollupRemoveCommitment, - data.KindSetDepositsLimit: node.KindSetDepositsLimit, - data.KindIncreasePaidStorage: node.KindIncreasePaidStorage, - data.KindVdfRevelation: node.KindVdfRevelation, - data.KindUpdateConsensusKey: node.KindUpdateConsensusKey, - data.KindDrainDelegate: node.KindDrainDelegate, - data.KindSrAddMessages: node.KindSrAddMessages, - data.KindSrCement: node.KindSrCement, - data.KindSrExecute: node.KindSrExecute, - data.KindSrOriginate: node.KindSrOriginate, - data.KindSrPublish: node.KindSrPublish, - data.KindSrRecoverBond: node.KindSrRecoverBond, - data.KindSrRefute: node.KindSrRefute, -} - var toTzKTKinds = map[string]string{ node.KindActivation: data.KindActivation, node.KindBallot: data.KindBallot,