Make TestNet field name consistent.

The commit makes the TestNet field in GetMiningInfoResult consistent with
InfoResult.
This commit is contained in:
Dave Collins 2014-05-03 23:38:47 -05:00
parent d443b48994
commit 4202bf2e93

View file

@ -247,7 +247,7 @@ type GetMiningInfoResult struct {
HashesPerSec int64 `json:"hashespersec"` HashesPerSec int64 `json:"hashespersec"`
NetworkHashPS int64 `json:"networkhashps"` NetworkHashPS int64 `json:"networkhashps"`
PooledTx uint64 `json:"pooledtx"` PooledTx uint64 `json:"pooledtx"`
Testnet bool `json:"testnet"` TestNet bool `json:"testnet"`
} }
// GetWorkResult models the data from the getwork command. // GetWorkResult models the data from the getwork command.