mirror of
https://github.com/nspcc-dev/neo-go.git
synced 2025-01-01 15:53:27 +00:00
bfa2d54e16
It's a server implementation detail, it has nothing to do with the data format itself. It also makes no sense exporing it.
9 lines
349 B
Go
9 lines
349 B
Go
package wrappers
|
|
|
|
// ValidateAddressResponse represents response to validate address call. Notice
|
|
// Address is an interface{} here because server echoes back whatever address
|
|
// value user has sent to it, even if it's not a string.
|
|
type ValidateAddressResponse struct {
|
|
Address interface{} `json:"address"`
|
|
IsValid bool `json:"isvalid"`
|
|
}
|