mirror of
https://github.com/nspcc-dev/neo-go.git
synced 2024-11-23 03:38:35 +00:00
1e0750e3cd
Move result there also.
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"`
|
|
}
|