Skip to content

Commit

Permalink
Merge pull request block-vision#20 from miancan/fix/delete_omitempty
Browse files Browse the repository at this point in the history
feat: delete MoveCallSuiTransaction omitempty
  • Loading branch information
JaydenLink committed Apr 18, 2024
2 parents 769b471 + 6242651 commit ff56dc7
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions models/read_transaction.go
Original file line number Diff line number Diff line change
Expand Up @@ -49,8 +49,8 @@ type MoveCallSuiTransaction struct {
Function string `json:"function"`
TypeArguments []string `json:"type_arguments"`
Arguments []struct {
Input int `json:"Input,omitempty"`
Result int `json:"Result,omitempty"`
Input int `json:"Input"`
Result int `json:"Result"`
} `json:"arguments"`
}

Expand Down

0 comments on commit ff56dc7

Please sign in to comment.