Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
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,
Copy link
Contributor Author

@tzaffi tzaffi May 15, 2023

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Cannot handle this slice type EvalDelta.SharedAccounts

}

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