From d1b6df71add530128ef0d783b2b8ef7dc64f3ade Mon Sep 17 00:00:00 2001 From: ehsan shariati Date: Mon, 25 Dec 2023 10:39:15 +0100 Subject: [PATCH] corrected bugs --- src/interfaces/fulaNativeModule.ts | 9 ++------- 1 file changed, 2 insertions(+), 7 deletions(-) diff --git a/src/interfaces/fulaNativeModule.ts b/src/interfaces/fulaNativeModule.ts index 1a81068..f94e91c 100644 --- a/src/interfaces/fulaNativeModule.ts +++ b/src/interfaces/fulaNativeModule.ts @@ -1,5 +1,4 @@ import { NativeModules, Platform } from 'react-native'; -import { transferToFula } from '../../.history/src/protocols/blockchain_20231223214858'; interface FulaNativeModule { initFula: ( @@ -101,11 +100,6 @@ interface FulaNativeModule { //On Blox calls for chain //Hardware - bloxFreeSpace: () => Promise; - wifiRemoveall: () => Promise; - reboot: () => Promise; - eraseBlData: () => Promise; - getAccount: () => Promise; assetsBalance: ( account: string, assetId: string, @@ -116,13 +110,14 @@ interface FulaNativeModule { wallet: string, chain: string ) => Promise; + getAccount: () => Promise; //Hardware + eraseBlData: () => Promise; bloxFreeSpace: () => Promise; wifiRemoveall: () => Promise; reboot: () => Promise; - getAccount: () => Promise; } const LINKING_ERROR =