Skip to content

Commit

Permalink
Fix Reversed typo
Browse files Browse the repository at this point in the history
  • Loading branch information
lil5 committed Apr 6, 2024
1 parent d4d0494 commit 076b971
Show file tree
Hide file tree
Showing 3 changed files with 3 additions and 2 deletions.
1 change: 1 addition & 0 deletions Makefile
Original file line number Diff line number Diff line change
@@ -1,4 +1,5 @@
start: go run .
.PHONY=build
build: go build .

release: release_darwin_arm64 release_darwin_arm64 release_linux_amd64 release_linux_arm64
Expand Down
2 changes: 1 addition & 1 deletion app/model.go
Original file line number Diff line number Diff line change
Expand Up @@ -99,7 +99,7 @@ type AccountFilter struct {
type AccountFilterFlags struct {
Debits bool `json:"debits"`
Credits bool `json:"credits"`
Reserved bool `json:"reserved"`
Reversed bool `json:"reversed"`
}

type AccountBalance struct {
Expand Down
2 changes: 1 addition & 1 deletion app/types.go
Original file line number Diff line number Diff line change
Expand Up @@ -119,7 +119,7 @@ func AccountFilterFromJsonToTigerbeetle(pAccountFilter *AccountFilter) (*types.A
tbFlags = types.AccountFilterFlags{
Debits: pAccountFilter.Flags.Debits,
Credits: pAccountFilter.Flags.Credits,
Reversed: pAccountFilter.Flags.Reserved,
Reversed: pAccountFilter.Flags.Reversed,
}
}

Expand Down

0 comments on commit 076b971

Please sign in to comment.