Skip to content

Commit

Permalink
Address fields in filters for tx
Browse files Browse the repository at this point in the history
Signed-off-by: Gabriel Indik <gabriel.indik@kaleido.io>
  • Loading branch information
gabriel-indik committed Feb 20, 2025
1 parent b9cfde1 commit 7ef1f03
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions core/go/internal/txmgr/transaction_query.go
Original file line number Diff line number Diff line change
Expand Up @@ -37,9 +37,9 @@ var transactionFilters = filters.FieldMap{
"created": filters.TimestampField("created"),
"abiReference": filters.TimestampField("abi_ref"),
"functionName": filters.StringField("fn_name"),
"domain": filters.StringField("domain"),
"from": filters.StringField("from"),
"to": filters.HexBytesField("to"),
"domain": filters.StringField(`transactions.domain`),
"from": filters.StringField(`"from"`),
"to": filters.HexBytesField(`"to"`),
}

func (tm *txManager) mapPersistedTXBase(pt *persistedTransaction) *pldapi.Transaction {
Expand Down

0 comments on commit 7ef1f03

Please sign in to comment.