Skip to content

Commit

Permalink
version bump
Browse files Browse the repository at this point in the history
  • Loading branch information
arobsn committed Jul 7, 2024
1 parent cd39216 commit 1b4cbff
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 3 deletions.
2 changes: 1 addition & 1 deletion package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "nautilus-wallet",
"version": "0.12.0",
"version": "0.12.1",
"private": true,
"type": "module",
"engines": {
Expand Down
5 changes: 3 additions & 2 deletions src/chains/ergo/services/graphQlService.ts
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,8 @@ import { Client, createClient, fetchExchange, gql, TypedDocumentNode } from "@ur
import { retryExchange } from "@urql/exchange-retry";
import { hex, utf8 } from "@fleet-sdk/crypto";
import { SColl, SConstant, SPair } from "@fleet-sdk/serializer";
import { chunk, first, isEmpty, min } from "@fleet-sdk/common";
import { chunk, first, isEmpty } from "@fleet-sdk/common";
import { min } from "lodash-es";
import { browser, hasBrowserContext } from "@/common/browser";
import { sigmaDecode } from "@/chains/ergo/serialization";
import { ErgoBox, Registers } from "@/types/connector";
Expand Down Expand Up @@ -364,7 +365,7 @@ class GraphQLService {
heights = heights.concat(chunk);
}

return { oldest: min(...heights), count: heights.length };
return { oldest: min(heights), count: heights.length };
}

public async getMempoolBoxes(address: string): Promise<ErgoBox[]> {
Expand Down

0 comments on commit 1b4cbff

Please sign in to comment.