Skip to content

Commit

Permalink
update dist
Browse files Browse the repository at this point in the history
  • Loading branch information
woodser committed Aug 28, 2024
1 parent aa3e0e3 commit 9e769ec
Show file tree
Hide file tree
Showing 23 changed files with 215 additions and 190 deletions.
2 changes: 1 addition & 1 deletion dist/dist/monero_wallet_full.js

Large diffs are not rendered by default.

Binary file modified dist/dist/monero_wallet_full.wasm
Binary file not shown.
Binary file modified dist/dist/monero_wallet_keys.wasm
Binary file not shown.
2 changes: 1 addition & 1 deletion dist/dist/monero_web_worker.js.map

Large diffs are not rendered by default.

2 changes: 1 addition & 1 deletion dist/monero_wallet_full.js

Large diffs are not rendered by default.

Binary file modified dist/monero_wallet_full.wasm
Binary file not shown.
Binary file modified dist/monero_wallet_keys.wasm
Binary file not shown.
2 changes: 1 addition & 1 deletion dist/monero_web_worker.js

Large diffs are not rendered by default.

2 changes: 1 addition & 1 deletion dist/monero_web_worker.js.map

Large diffs are not rendered by default.

5 changes: 5 additions & 0 deletions dist/src/main/ts/common/MoneroRpcConnection.d.ts
Original file line number Diff line number Diff line change
@@ -1,3 +1,4 @@
import ThreadPool from "./ThreadPool";
/**
* Maintains a connection and sends requests to a Monero RPC API.
*/
Expand All @@ -14,6 +15,8 @@ export default class MoneroRpcConnection {
protected attributes: any;
protected fakeDisconnected: boolean;
protected responseTime: number;
protected checkConnectionMutex: ThreadPool;
protected sendRequestMutex: ThreadPool;
/** @private */
static DEFAULT_CONFIG: Partial<MoneroRpcConnection>;
/**
Expand Down Expand Up @@ -142,6 +145,8 @@ export default class MoneroRpcConnection {
toJson(): {} & this;
toString(): string;
setFakeDisconnected(fakeDisconnected: any): void;
protected queueCheckConnection<T>(asyncFn: () => Promise<T>): Promise<T>;
protected queueSendRequest<T>(asyncFn: () => Promise<T>): Promise<T>;
protected static validateHttpResponse(resp: any): void;
protected validateRpcResponse(resp: any, method: any, params: any): void;
}
Loading

0 comments on commit 9e769ec

Please sign in to comment.