Skip to content

Commit d1b6df7

Browse files
committed
corrected bugs
1 parent c049800 commit d1b6df7

File tree

1 file changed

+2
-7
lines changed

1 file changed

+2
-7
lines changed

src/interfaces/fulaNativeModule.ts

Lines changed: 2 additions & 7 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,4 @@
11
import { NativeModules, Platform } from 'react-native';
2-
import { transferToFula } from '../../.history/src/protocols/blockchain_20231223214858';
32

43
interface FulaNativeModule {
54
initFula: (
@@ -101,11 +100,6 @@ interface FulaNativeModule {
101100

102101
//On Blox calls for chain
103102
//Hardware
104-
bloxFreeSpace: () => Promise<string>;
105-
wifiRemoveall: () => Promise<string>;
106-
reboot: () => Promise<string>;
107-
eraseBlData: () => Promise<string>;
108-
getAccount: () => Promise<string>;
109103
assetsBalance: (
110104
account: string,
111105
assetId: string,
@@ -116,13 +110,14 @@ interface FulaNativeModule {
116110
wallet: string,
117111
chain: string
118112
) => Promise<string>;
113+
getAccount: () => Promise<string>;
119114

120115

121116
//Hardware
117+
eraseBlData: () => Promise<string>;
122118
bloxFreeSpace: () => Promise<string>;
123119
wifiRemoveall: () => Promise<string>;
124120
reboot: () => Promise<string>;
125-
getAccount: () => Promise<string>;
126121
}
127122

128123
const LINKING_ERROR =

0 commit comments

Comments
 (0)