forked from TrueCloudLab/neoneo-go
6 lines
150 B
Go
6 lines
150 B
Go
package result
|
|
|
|
// NetworkFee represents a result of calculatenetworkfee RPC call.
|
|
type NetworkFee struct {
|
|
Value int64 `json:"networkfee,string"`
|
|
}
|