aboutsummaryrefslogtreecommitdiff
path: root/src/wallet.ts
diff options
context:
space:
mode:
Diffstat (limited to 'src/wallet.ts')
-rw-r--r--src/wallet.ts5
1 files changed, 0 insertions, 5 deletions
diff --git a/src/wallet.ts b/src/wallet.ts
index 1ea8c2fd2..407318aa2 100644
--- a/src/wallet.ts
+++ b/src/wallet.ts
@@ -519,11 +519,6 @@ export class Wallet {
return denoms;
}
- async getProposal(proposalId: string): Promise<ProposalRecord | undefined> {
- const proposal = await this.db.get(Stores.proposals, proposalId);
- return proposal;
- }
-
async getExchanges(): Promise<ExchangeRecord[]> {
return await this.db.iter(Stores.exchanges).toArray();
}