diff options
author | Florian Dold <florian.dold@gmail.com> | 2019-12-16 22:42:10 +0100 |
---|---|---|
committer | Florian Dold <florian.dold@gmail.com> | 2019-12-16 22:42:10 +0100 |
commit | 6a9318c2989f170fef2058c0ed156aab490e3fd9 (patch) | |
tree | a1b73b19119c8f73c350958f10cae60bf20d76a8 /src/wallet.ts | |
parent | fb6508de9d71600dbca59cb0e6a4c77e4f3f3ee5 (diff) |
cleanup / history
Diffstat (limited to 'src/wallet.ts')
-rw-r--r-- | src/wallet.ts | 5 |
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(); } |