@@ -4,22 +4,22 @@ import (
4
4
"context"
5
5
"fmt"
6
6
7
+ "github.com/ethereum/go-ethereum/accounts/abi"
8
+ "github.com/ethereum/go-ethereum/accounts/abi/bind"
9
+ "github.com/ethereum/go-ethereum/common"
10
+ "github.com/ethereum/go-ethereum/core/types"
7
11
"github.com/jackc/pgx/v4"
8
12
"github.com/jackc/pgx/v4/pgxpool"
9
13
"github.com/pkg/errors"
10
14
"github.com/rs/zerolog/log"
15
+ "github.com/shutter-network/shop-contracts/bindings"
11
16
12
- "github.com/ethereum/go-ethereum/accounts/abi"
13
- "github.com/ethereum/go-ethereum/accounts/abi/bind"
14
- "github.com/ethereum/go-ethereum/common"
15
- "github.com/ethereum/go-ethereum/core/types"
16
17
obskeyper "github.com/shutter-network/rolling-shutter/rolling-shutter/chainobserver/db/keyper"
17
18
"github.com/shutter-network/rolling-shutter/rolling-shutter/medley"
18
19
"github.com/shutter-network/rolling-shutter/rolling-shutter/medley/chainsync/client"
19
20
"github.com/shutter-network/rolling-shutter/rolling-shutter/medley/chainsync/syncer"
20
21
"github.com/shutter-network/rolling-shutter/rolling-shutter/medley/encodeable/number"
21
22
"github.com/shutter-network/rolling-shutter/rolling-shutter/shdb"
22
- "github.com/shutter-network/shop-contracts/bindings"
23
23
)
24
24
25
25
var ErrParseKeyperSet = errors .New ("can't parse KeyperSet" )
@@ -93,7 +93,7 @@ func (handler *KeyperSetAdded) Accept(
93
93
94
94
func (handler * KeyperSetAdded ) Handle (
95
95
ctx context.Context ,
96
- update syncer.ChainUpdateContext ,
96
+ _ syncer.ChainUpdateContext ,
97
97
events []bindings.KeyperSetManagerKeyperSetAdded ,
98
98
) error {
99
99
// TODO: we don't handle reorgs here.
0 commit comments