mirror of
https://github.com/nspcc-dev/neo-go.git
synced 2024-11-23 23:30:36 +00:00
6a61e86d12
C#: { "jsonrpc": "2.0", "id": 2, "result": { "networkfee": "1185120" } } Go: { "id": 2, "jsonrpc": "2.0", "result": 1185120 } Thanks @csmuller for finding it.
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"`
|
|
}
|