mirror of
https://github.com/cake-tech/cake_wallet.git
synced 2024-11-16 17:27:37 +00:00
review fixes
This commit is contained in:
parent
e83063535e
commit
cb48d73ae0
3 changed files with 2 additions and 19 deletions
|
@ -209,22 +209,7 @@ I/flutter ( 4474): Gas Used: 53000
|
|||
}
|
||||
}
|
||||
|
||||
Future<String> checkEnsName(String ensName) async {
|
||||
if (_client == null) {
|
||||
return "";
|
||||
}
|
||||
try {
|
||||
final ens = Ens(client: _client!);
|
||||
|
||||
final addr = await ens.withName(ensName).getAddress();
|
||||
return addr.hex;
|
||||
} catch (e) {
|
||||
print(e);
|
||||
return "";
|
||||
}
|
||||
}
|
||||
|
||||
dynamic getWeb3Client() {
|
||||
Web3Client? getWeb3Client() {
|
||||
return _client;
|
||||
}
|
||||
|
||||
|
|
|
@ -509,5 +509,5 @@ abstract class EthereumWalletBase
|
|||
String signMessage(String message, {String? address = null}) =>
|
||||
bytesToHex(_ethPrivateKey.signPersonalMessageToUint8List(ascii.encode(message)));
|
||||
|
||||
dynamic getWeb3Client() => _client.getWeb3Client();
|
||||
Web3Client? getWeb3Client() => _client.getWeb3Client();
|
||||
}
|
||||
|
|
|
@ -20,8 +20,6 @@ class EnsRecord {
|
|||
try {
|
||||
final ens = Ens(client: _client);
|
||||
|
||||
dynamic res;
|
||||
|
||||
if (wallet != null) {
|
||||
switch (wallet.type) {
|
||||
case WalletType.monero:
|
||||
|
|
Loading…
Reference in a new issue