Skip to content

Commit

Permalink
Fix types
Browse files Browse the repository at this point in the history
  • Loading branch information
dguenther committed Aug 10, 2024
1 parent 3a7a74e commit f7faa02
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions packages/mobile-app/data/facades/wallet/demoHandlers.ts
Original file line number Diff line number Diff line change
Expand Up @@ -70,7 +70,7 @@ const ACCOUNTS: Account[] = [
];

const WALLET_STATUS: WalletStatus = {
status: "SYNCING",
status: "SCANNING",
latestKnownBlock: 523142,
};

Expand Down Expand Up @@ -293,7 +293,7 @@ export const walletDemoHandlers = f.facade<WalletHandlers>({
},
),
resumeSyncing: f.handler.mutation(async () => {
WALLET_STATUS.status = "SYNCING";
WALLET_STATUS.status = "SCANNING";
}),
sendTransaction: f.handler.mutation(
async (args: {
Expand Down

0 comments on commit f7faa02

Please sign in to comment.