From d1002721f7669a71438568ca9ea1b38b7038b699 Mon Sep 17 00:00:00 2001 From: Eduard S Date: Thu, 8 Oct 2020 16:40:12 +0200 Subject: [PATCH] Remove nolints --- eth/auction.go | 2 +- eth/rollup.go | 6 +----- eth/wdelayer.go | 2 +- 3 files changed, 3 insertions(+), 7 deletions(-) diff --git a/eth/auction.go b/eth/auction.go index 8f9d447..714028c 100644 --- a/eth/auction.go +++ b/eth/auction.go @@ -168,7 +168,7 @@ type AuctionEventHEZClaimed struct { } // AuctionEvents is the list of events in a block of the Auction Smart Contract -type AuctionEvents struct { //nolint:structcheck +type AuctionEvents struct { NewBid []AuctionEventNewBid NewSlotDeadline []AuctionEventNewSlotDeadline NewClosedAuctionSlots []AuctionEventNewClosedAuctionSlots diff --git a/eth/rollup.go b/eth/rollup.go index fcd4b1c..9694c77 100644 --- a/eth/rollup.go +++ b/eth/rollup.go @@ -150,7 +150,6 @@ type RollupVariables struct { } // QueueStruct is the queue of L1Txs for a batch -//nolint:structcheck type QueueStruct struct { L1TxQueue []common.L1Tx TotalL1TxFee *big.Int @@ -171,7 +170,6 @@ type RollupVerifierStruct struct { } // RollupState represents the state of the Rollup in the Smart Contract -//nolint:structcheck,unused type RollupState struct { StateRoot *big.Int ExitRoots []*big.Int @@ -229,7 +227,7 @@ type RollupEventWithdrawEvent struct { } // RollupEvents is the list of events in a block of the Rollup Smart Contract -type RollupEvents struct { //nolint:structcheck +type RollupEvents struct { L1UserTx []RollupEventL1UserTx AddToken []RollupEventAddToken ForgeBatch []RollupEventForgeBatch @@ -251,7 +249,6 @@ func NewRollupEvents() RollupEvents { } // RollupForgeBatchArgs are the arguments to the ForgeBatch function in the Rollup Smart Contract -//nolint:structcheck,unused type RollupForgeBatchArgs struct { NewLastIdx int64 NewStRoot *big.Int @@ -269,7 +266,6 @@ type RollupForgeBatchArgs struct { } // RollupForgeBatchArgsAux are the arguments to the ForgeBatch function in the Rollup Smart Contract -//nolint:structcheck,unused type RollupForgeBatchArgsAux struct { NewLastIdx *big.Int NewStRoot *big.Int diff --git a/eth/wdelayer.go b/eth/wdelayer.go index 2865ab2..c032b23 100644 --- a/eth/wdelayer.go +++ b/eth/wdelayer.go @@ -80,7 +80,7 @@ type WDelayerEventNewHermezGovernanceDAOAddress struct { } // WDelayerEvents is the lis of events in a block of the WithdrawalDelayer Smart Contract -type WDelayerEvents struct { //nolint:structcheck +type WDelayerEvents struct { Deposit []WDelayerEventDeposit Withdraw []WDelayerEventWithdraw EmergencyModeEnabled []WDelayerEventEmergencyModeEnabled