Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
21 changes: 21 additions & 0 deletions zingo-netutils/CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -5,6 +5,27 @@ All notable changes to this project will be documented in this file.
The format is based on [Keep a Changelog](https://keepachangelog.com/en/1.0.0/),
and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0.html).

## [Unreleased]

### Added

### Changed

- `Indexer` and `TransparentIndexer` traits:
- methods now return `tonic::Status` error to be more compatible as drop-in replacement for ComapctTxStreamerClient
Comment thread
zancas marked this conversation as resolved.
- methods take a `&mut self` to allow for re-use of client instead of forcing creation of client for each rpc call
- `GprcIndexer` struct:
- implementations updated for changes to `Indexer` and `TransparentIndexer` traits
- `new` constructor is now async
- `get_client` method renamed `get_clear_net_client`. naming chosen to distinguish against nym enabled clients which will also be held by `Grpcndexer`


### Removed

- `GprcIndexer::get_zcb_client`: crate now unified to use `lightwallet_protocol` types throughout

### Deprecated

## [4.0.0]

### Added
Expand Down
Loading