Skip to content

Commit 66dfd5b

Browse files
committed
Remove retry abi reference
1 parent 0395267 commit 66dfd5b

File tree

1 file changed

+4
-7
lines changed

1 file changed

+4
-7
lines changed

chains/evm/calls/events/listener.go

Lines changed: 4 additions & 7 deletions
Original file line numberDiff line numberDiff line change
@@ -24,18 +24,15 @@ type ChainClient interface {
2424
}
2525

2626
type Listener struct {
27-
client ChainClient
28-
abi abi.ABI
29-
retryAbi abi.ABI
27+
client ChainClient
28+
abi abi.ABI
3029
}
3130

3231
func NewListener(client ChainClient) *Listener {
33-
retryAbi, _ := abi.JSON(strings.NewReader(consts.RetryABI))
3432
abi, _ := abi.JSON(strings.NewReader(consts.BridgeABI))
3533
return &Listener{
36-
client: client,
37-
abi: abi,
38-
retryAbi: retryAbi,
34+
client: client,
35+
abi: abi,
3936
}
4037
}
4138

0 commit comments

Comments
 (0)