Skip to content

Commit

Permalink
bugfix: indexer import types (#73)
Browse files Browse the repository at this point in the history
  • Loading branch information
tzaffi authored May 15, 2023
1 parent 2a0537c commit a6edc4d
Show file tree
Hide file tree
Showing 3 changed files with 5 additions and 4 deletions.
3 changes: 2 additions & 1 deletion conduit/plugins/processors/filterprocessor/gen/generate.go
Original file line number Diff line number Diff line change
Expand Up @@ -50,7 +50,7 @@ var ignoreTags = map[string]bool{
// TODO: support map types?
"dt.gd": true,
"dt.ld": true,
// TODO: support array types?
// TODO: support slice/array types?
"txn.apaa": true,
"txn.apat": true,
"txn.apfa": true,
Expand All @@ -59,6 +59,7 @@ var ignoreTags = map[string]bool{
"txn.apap": true,
"txn.apsu": true,
"dt.lg": true,
"dt.sa": true,
}

func noCast(t reflect.StructField) bool {
Expand Down
2 changes: 1 addition & 1 deletion go.mod
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@ module github.com/algorand/conduit
go 1.17

require (
github.com/algorand/go-algorand-sdk/v2 v2.0.0-20230324200319-055c8d2b174a
github.com/algorand/go-algorand-sdk/v2 v2.0.0-20230515174312-963d360c9eb7
github.com/algorand/go-codec/codec v1.1.8
github.com/algorand/indexer v0.0.0-20230315150109-cf0074cfd4ed
github.com/jackc/pgx/v4 v4.13.0
Expand Down
4 changes: 2 additions & 2 deletions go.sum
Original file line number Diff line number Diff line change
Expand Up @@ -85,8 +85,8 @@ github.com/algorand/avm-abi v0.1.1/go.mod h1:+CgwM46dithy850bpTeHh9MC99zpn2Snirb
github.com/algorand/avm-abi v0.2.0 h1:bkjsG+BOEcxUcnGSALLosmltE0JZdg+ZisXKx0UDX2k=
github.com/algorand/avm-abi v0.2.0/go.mod h1:+CgwM46dithy850bpTeHh9MC99zpn2Snirb3QTl2O/g=
github.com/algorand/go-algorand-sdk/v2 v2.0.0-20230228201805-5b8c99b1412c/go.mod h1:Nt3EHpP8AznLs0/EFfhr0/xsVf5ucnvjNeRygGgbUzM=
github.com/algorand/go-algorand-sdk/v2 v2.0.0-20230324200319-055c8d2b174a h1:fv15GJlyepaaP517PeiJuPX0Q1Wmr17T8uZzevep/TU=
github.com/algorand/go-algorand-sdk/v2 v2.0.0-20230324200319-055c8d2b174a/go.mod h1:Nt3EHpP8AznLs0/EFfhr0/xsVf5ucnvjNeRygGgbUzM=
github.com/algorand/go-algorand-sdk/v2 v2.0.0-20230515174312-963d360c9eb7 h1:72UIyiVVT1H2J6VtYW/iFP5rKEYRe0zivIR35g6M2k0=
github.com/algorand/go-algorand-sdk/v2 v2.0.0-20230515174312-963d360c9eb7/go.mod h1:Nt3EHpP8AznLs0/EFfhr0/xsVf5ucnvjNeRygGgbUzM=
github.com/algorand/go-codec v1.1.8 h1:XDSreeeZY8gMst6Edz4RBkl08/DGMJOeHYkoXL2B7wI=
github.com/algorand/go-codec v1.1.8/go.mod h1:XhzVs6VVyWMLu6cApb9/192gBjGRVGm5cX5j203Heg4=
github.com/algorand/go-codec/codec v1.1.8 h1:lsFuhcOH2LiEhpBH3BVUUkdevVmwCRyvb7FCAAPeY6U=
Expand Down

0 comments on commit a6edc4d

Please sign in to comment.