Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Fix Incorrect Struct Field Name #7

Merged
merged 1 commit into from
Aug 31, 2021
Merged
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
4 changes: 2 additions & 2 deletions wallet/structs.go
Original file line number Diff line number Diff line change
Expand Up @@ -341,7 +341,7 @@ type RequestSweepDust struct {
// (Optional) If true, the newly created transaction will not be relayed to the monero network. (Defaults to false)
DoNotRelay bool `json:"do_not_relay,omitempty"`
// (Optional) Return the transactions as hex string after sending. (Defaults to false)
GetTxHey bool `json:"get_tx_hex,omitempty"`
GetTxHex bool `json:"get_tx_hex,omitempty"`
// (Optional) Return list of transaction metadata needed to relay the transfer later. (Defaults to false)
GetTxMetadata bool `json:"get_tx_metadata,omitempty"`
}
Expand Down Expand Up @@ -439,7 +439,7 @@ type RequestSweepSingle struct {
// (Optional) If true, do not relay this sweep transfer. (Defaults to false)
DoNotRelay bool `json:"do_not_relay,omitempty"`
// (Optional) return the transactions as hex encoded string. (Defaults to false)
GetTxHey bool `json:"get_tx_hex,omitempty"`
GetTxHex bool `json:"get_tx_hex,omitempty"`
// (Optional) return the transaction metadata as a string. (Defaults to false)
GetTxMetadata bool `json:"get_tx_metadata,omitempty"`
}
Expand Down