File tree Expand file tree Collapse file tree 3 files changed +5
-5
lines changed Expand file tree Collapse file tree 3 files changed +5
-5
lines changed Original file line number Diff line number Diff line change 4
4
5
5
require (
6
6
github.com/blinklabs-io/gouroboros v0.53.0
7
- github.com/blinklabs-io/snek v0.5.0
7
+ github.com/blinklabs-io/snek v0.9.1
8
8
github.com/dgraph-io/badger/v4 v4.2.0
9
9
github.com/kelseyhightower/envconfig v1.4.0
10
10
github.com/miekg/dns v1.1.55
Original file line number Diff line number Diff line change @@ -3,8 +3,8 @@ github.com/BurntSushi/toml v0.3.1/go.mod h1:xHWCNGjB5oqiDr8zfno3MHue2Ht5sIBksp03
3
3
github.com/benbjohnson/clock v1.3.0 h1:ip6w0uFQkncKQ979AypyG0ER7mqUSBdKLOgAle/AT8A =
4
4
github.com/blinklabs-io/gouroboros v0.53.0 h1:JRq7FJ2HP5Fv+RBREzHAskT74u3Es8Sra9ynW08sumo =
5
5
github.com/blinklabs-io/gouroboros v0.53.0 /go.mod h1:2wCCNNsHNYMT4gQB+bXS0Y99Oeu8+EM96hi7hW22C2w =
6
- github.com/blinklabs-io/snek v0.5.0 h1://vQo5dp3aRUHrBaywyBZRDgS+Skh3ZgNusMhBNgwo0 =
7
- github.com/blinklabs-io/snek v0.5.0 /go.mod h1:MScjJA0cu7pbqkfsIbK5i2ucF+4pgk7ybqFdiRlzIsU =
6
+ github.com/blinklabs-io/snek v0.9.1 h1:PEREmUJVHKRJhq5vlF1AxGr1MJnBu20AN69VO34FuHY =
7
+ github.com/blinklabs-io/snek v0.9.1 /go.mod h1:+/Jw9UwgKP7eEWmmDRX1I/HjgsIOGY9ECwhLatH2Z1I =
8
8
github.com/cespare/xxhash/v2 v2.1.1 /go.mod h1:VGX0DQ3Q6kWi7AoAeZDth3/j3BFtOZR5XLFGgcrjCOs =
9
9
github.com/cespare/xxhash/v2 v2.2.0 h1:DC2CZ1Ep5Y4k3ZQ899DldepgrayRUGE6BBZ/cd9Cj44 =
10
10
github.com/cespare/xxhash/v2 v2.2.0 /go.mod h1:VGX0DQ3Q6kWi7AoAeZDth3/j3BFtOZR5XLFGgcrjCOs =
Original file line number Diff line number Diff line change @@ -102,12 +102,12 @@ func (i *Indexer) Start() error {
102
102
// Configure pipeline filters
103
103
// We only care about transaction events
104
104
filterEvent := filter_event .New (
105
- filter_event .WithType ( "chainsync.transaction" ),
105
+ filter_event .WithTypes ([] string { "chainsync.transaction" } ),
106
106
)
107
107
i .pipeline .AddFilter (filterEvent )
108
108
// We only care about transactions on a certain address
109
109
filterChainsync := filter_chainsync .New (
110
- filter_chainsync .WithAddress ( cfg .Indexer .ScriptAddress ),
110
+ filter_chainsync .WithAddresses ([] string { cfg .Indexer .ScriptAddress } ),
111
111
)
112
112
i .pipeline .AddFilter (filterChainsync )
113
113
// Configure pipeline output
You can’t perform that action at this time.
0 commit comments