Skip to content

Commit f7faa02

Browse files
committed
Fix types
1 parent 3a7a74e commit f7faa02

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

packages/mobile-app/data/facades/wallet/demoHandlers.ts

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -70,7 +70,7 @@ const ACCOUNTS: Account[] = [
7070
];
7171

7272
const WALLET_STATUS: WalletStatus = {
73-
status: "SYNCING",
73+
status: "SCANNING",
7474
latestKnownBlock: 523142,
7575
};
7676

@@ -293,7 +293,7 @@ export const walletDemoHandlers = f.facade<WalletHandlers>({
293293
},
294294
),
295295
resumeSyncing: f.handler.mutation(async () => {
296-
WALLET_STATUS.status = "SYNCING";
296+
WALLET_STATUS.status = "SCANNING";
297297
}),
298298
sendTransaction: f.handler.mutation(
299299
async (args: {

0 commit comments

Comments
 (0)