Skip to content

Commit

Permalink
corrected bugs
Browse files Browse the repository at this point in the history
  • Loading branch information
ehsan6sha committed Dec 25, 2023
1 parent c049800 commit d1b6df7
Showing 1 changed file with 2 additions and 7 deletions.
9 changes: 2 additions & 7 deletions src/interfaces/fulaNativeModule.ts
Original file line number Diff line number Diff line change
@@ -1,5 +1,4 @@
import { NativeModules, Platform } from 'react-native';
import { transferToFula } from '../../.history/src/protocols/blockchain_20231223214858';

interface FulaNativeModule {
initFula: (
Expand Down Expand Up @@ -101,11 +100,6 @@ interface FulaNativeModule {

//On Blox calls for chain
//Hardware
bloxFreeSpace: () => Promise<string>;
wifiRemoveall: () => Promise<string>;
reboot: () => Promise<string>;
eraseBlData: () => Promise<string>;
getAccount: () => Promise<string>;
assetsBalance: (
account: string,
assetId: string,
Expand All @@ -116,13 +110,14 @@ interface FulaNativeModule {
wallet: string,
chain: string
) => Promise<string>;
getAccount: () => Promise<string>;


//Hardware
eraseBlData: () => Promise<string>;
bloxFreeSpace: () => Promise<string>;
wifiRemoveall: () => Promise<string>;
reboot: () => Promise<string>;
getAccount: () => Promise<string>;
}

const LINKING_ERROR =
Expand Down

0 comments on commit d1b6df7

Please sign in to comment.