Boris Nagaev

Results 36 comments of Boris Nagaev

@andig I'm rewriting the generators in Go. Want to make a single Go program producing for all architectures.

Completely agree with the report. Also there is not way to input amount in BTC, only in fiat.

Thanks! Merged.

To speed up the protocol, we can go even further: 1. the renter sends new revision and a partial signature. 2. Host sends back the full signature + data (IDs...

I propose not to make settings exchange in the beginning, because the renter can cache those settings and they change really rare. The only part of settings that matters are...

To avoid code duplication, I suggest to write the following private function: ``` type DownloadTarget int const ( DOWNLOAD_DATA DownloadTarget = iota DOWNLOAD_ID ) func download(fcid types.FileContractID, target DownloadTarget, sectorID...

Some hosts provide downloads for free. In this case we can just keep previous contract version instead of issuing a new one and writing it to disk. For highly loaded...

I also think upload/download RPCs should not be mixed with new/renew RPCs. Actually I am not sure about upload RPCs. To organize upload RPC in one round trip way, a...