Skip to content

Commit 00318e9

Browse files
authored
Merge pull request #32 from blinklabs-io/chore/update-snek
chore: update blinklabs-io/snek to v0.9.1
2 parents c89b6bf + 0624687 commit 00318e9

File tree

3 files changed

+5
-5
lines changed

3 files changed

+5
-5
lines changed

go.mod

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@ go 1.19
44

55
require (
66
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
88
github.com/dgraph-io/badger/v4 v4.2.0
99
github.com/kelseyhightower/envconfig v1.4.0
1010
github.com/miekg/dns v1.1.55

go.sum

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -3,8 +3,8 @@ github.com/BurntSushi/toml v0.3.1/go.mod h1:xHWCNGjB5oqiDr8zfno3MHue2Ht5sIBksp03
33
github.com/benbjohnson/clock v1.3.0 h1:ip6w0uFQkncKQ979AypyG0ER7mqUSBdKLOgAle/AT8A=
44
github.com/blinklabs-io/gouroboros v0.53.0 h1:JRq7FJ2HP5Fv+RBREzHAskT74u3Es8Sra9ynW08sumo=
55
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=
88
github.com/cespare/xxhash/v2 v2.1.1/go.mod h1:VGX0DQ3Q6kWi7AoAeZDth3/j3BFtOZR5XLFGgcrjCOs=
99
github.com/cespare/xxhash/v2 v2.2.0 h1:DC2CZ1Ep5Y4k3ZQ899DldepgrayRUGE6BBZ/cd9Cj44=
1010
github.com/cespare/xxhash/v2 v2.2.0/go.mod h1:VGX0DQ3Q6kWi7AoAeZDth3/j3BFtOZR5XLFGgcrjCOs=

internal/indexer/indexer.go

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -102,12 +102,12 @@ func (i *Indexer) Start() error {
102102
// Configure pipeline filters
103103
// We only care about transaction events
104104
filterEvent := filter_event.New(
105-
filter_event.WithType("chainsync.transaction"),
105+
filter_event.WithTypes([]string{"chainsync.transaction"}),
106106
)
107107
i.pipeline.AddFilter(filterEvent)
108108
// We only care about transactions on a certain address
109109
filterChainsync := filter_chainsync.New(
110-
filter_chainsync.WithAddress(cfg.Indexer.ScriptAddress),
110+
filter_chainsync.WithAddresses([]string{cfg.Indexer.ScriptAddress}),
111111
)
112112
i.pipeline.AddFilter(filterChainsync)
113113
// Configure pipeline output

0 commit comments

Comments
 (0)