You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
The LedgerEntryChange level functions is similar to the account_entry.go example code from the design doc
Creating the LedgerEntryChange level functions is probably more involved than the other levels because of the considerate amount of overlapping data field names between different entry types.
Create new struct for the Operation level functions
type Change struct {
Change ingest.Change
}
Create function to GetLedgerEntryChanges() or just use the LedgerChangeReader()
It may be worth exploring Change specific structs and low level helper functions rather than combining all ledger change types into a single Change struct
The text was updated successfully, but these errors were encountered:
The LedgerEntryChange level functions is similar to the account_entry.go example code from the design doc
Creating the LedgerEntryChange level functions is probably more involved than the other levels because of the considerate amount of overlapping data field names between different entry types.
Create new struct for the Operation level functions
Create function to GetLedgerEntryChanges() or just use the LedgerChangeReader()
Define functions needed for
It may be worth exploring Change specific structs and low level helper functions rather than combining all ledger change types into a single Change struct
The text was updated successfully, but these errors were encountered: