linting: cover the basics

This commit is contained in:
Zach Ramsay
2017-09-21 15:26:43 -04:00
committed by Ethan Buchman
parent bd9f1d0d4c
commit 6a378d30f3
7 changed files with 13 additions and 23 deletions

View File

@ -113,7 +113,7 @@ func (cli *grpcClient) SetResponseCallback(resCb Callback) {
//----------------------------------------
// GRPC calls are synchronous, but some callbacks expect to be called asynchronously
// (eg. the mempool expects to be able to lock to remove bad txs from cache).
// To accomodate, we finish each call in its own go-routine,
// To accommodate, we finish each call in its own go-routine,
// which is expensive, but easy - if you want something better, use the socket protocol!
// maybe one day, if people really want it, we use grpc streams,
// but hopefully not :D