Fix comment typo noticed by jrick@

This commit is contained in:
John C. Vernaleo 2013-08-12 11:24:49 -04:00
parent da7e872354
commit dc2fe40a3d

View file

@ -796,7 +796,7 @@ func RpcCommand(user string, password string, server string, message []byte) (Re
} }
// IsValidIdType checks that the Id field (which can go in any of the json // IsValidIdType checks that the Id field (which can go in any of the json
// messages is valid. json rpc 1.0 allows any (json) type, but we still need // messages) is valid. json rpc 1.0 allows any (json) type, but we still need
// to prevent values that cannot be marshalled from going in. json rpc 2.0 // to prevent values that cannot be marshalled from going in. json rpc 2.0
// (which bitcoind follows for some parts) only allows string, number, or null, // (which bitcoind follows for some parts) only allows string, number, or null,
// so we restrict to that list. Ths is only necessary if you manually marshal // so we restrict to that list. Ths is only necessary if you manually marshal