(kvIndices []uint64, decodedBlobs [][]byte, commits []common.Hash)
| 1227 | } |
| 1228 | |
| 1229 | func (s *SyncClient) commitBlobs(kvIndices []uint64, decodedBlobs [][]byte, commits []common.Hash) ([]uint64, error) { |
| 1230 | recordDur := s.metrics.ClientRecordTimeUsed("commitBlobs") |
| 1231 | defer recordDur() |
| 1232 | return s.storageManager.CommitBlobs(kvIndices, decodedBlobs, commits) |
| 1233 | } |
| 1234 | |
| 1235 | // report calculates various status reports and provides it to the user. |
| 1236 | func (s *SyncClient) report(force bool) { |
no test coverage detected