Skip to content

Commit

Permalink
Merge pull request #711 from bvotteler/chore-bump-version
Browse files Browse the repository at this point in the history
Chore: bump version
  • Loading branch information
bvotteler committed Nov 29, 2023
2 parents 9bded45 + 5df06c3 commit 944ce91
Show file tree
Hide file tree
Showing 3 changed files with 3 additions and 2 deletions.
2 changes: 1 addition & 1 deletion package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "@interlay/interbtc-api",
"version": "2.6.0-rc.0",
"version": "2.6.0",
"description": "JavaScript library to interact with interBTC",
"main": "build/cjs/src/index.js",
"module": "build/esm/src/index.js",
Expand Down
1 change: 1 addition & 0 deletions src/types/index.ts
Original file line number Diff line number Diff line change
Expand Up @@ -5,3 +5,4 @@ export * from "./vault";
export * from "./loans";
export * from "./extrinsic";
export * from "./encoding";
export * from "./oracleTypes";
2 changes: 1 addition & 1 deletion src/utils/issueRedeem.ts
Original file line number Diff line number Diff line change
Expand Up @@ -69,7 +69,7 @@ export function getRequestIdsFromEvents(
eventToFind: AugmentedEvent<ApiTypes, AnyTuple>,
api: ApiPromise
): Hash[] {
const ids = new Array<Hash>();
const ids: Hash[] = [];
for (const { event } of events) {
if (eventToFind.is(event)) {
// the redeem id has type H256 and is the first item of the event data array
Expand Down

0 comments on commit 944ce91

Please sign in to comment.