Skip to content

Commit

Permalink
chore: add #96 to changelog
Browse files Browse the repository at this point in the history
  • Loading branch information
RafilxTenfen committed Jan 16, 2025
1 parent 959d7e0 commit 8ea61af
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 1 deletion.
1 change: 1 addition & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -42,6 +42,7 @@ The format is based on [Keep a Changelog](https://keepachangelog.com/en/1.0.0/)
* [#83](https://github.com/babylonlabs-io/covenant-emulator/pull/83) covenant-signer: remove go.mod
* [#95](https://github.com/babylonlabs-io/covenant-emulator/pull/95) removed local signer option
as the covenant emulator should only connect to a remote signer
* [#96](https://github.com/babylonlabs-io/covenant-emulator/pull/96) add pagination to `queryDelegationsWithStatus`

## v0.11.3

Expand Down
2 changes: 1 addition & 1 deletion clientcontroller/babylon.go
Original file line number Diff line number Diff line change
Expand Up @@ -206,7 +206,7 @@ func (bc *BabylonController) queryDelegationsWithStatus(status btcstakingtypes.B
Limit: pgLimit,
}

dels := make([]*types.Delegation, delsLimit)
dels := make([]*types.Delegation, 0, delsLimit)
indexDels := uint64(0)

for indexDels <= delsLimit {
Expand Down

0 comments on commit 8ea61af

Please sign in to comment.