This commit is contained in:
Dimitris Apostolou 2024-01-18 01:38:36 +02:00 committed by GitHub
parent d8f1cdc7ef
commit 1b65adce53
No known key found for this signature in database
GPG key ID: B5690EEEBB952194
3 changed files with 4 additions and 4 deletions

View file

@ -253,7 +253,7 @@ class EvmChainServiceImpl implements ChainService {
return result;
} catch (e) {
log('An error has occured while signing transaction: ${e.toString()}');
log('An error has occurred while signing transaction: ${e.toString()}');
bottomSheetService.queueBottomSheet(
isModalDismissible: true,
widget: BottomSheetMessageDisplayWidget(

View file

@ -10,7 +10,7 @@ OPEN_SSL_ARM_DIR_PATH="${EXTERNAL_MACOS_SOURCE_DIR}/${OPEN_SSL_ARM_DIR_NAME}"
build_openssl_init_common() {
DIR=$1
# Use 1.1.1s becasue of https://github.com/openssl/openssl/issues/18720
# Use 1.1.1s because of https://github.com/openssl/openssl/issues/18720
OPENSSL_VERSION="1.1.1s"
echo "============================ OpenSSL ============================"

View file

@ -403,10 +403,10 @@ class AssetRate {
}
abstract class HavenWalletDetails {
// FIX-ME: it's abstruct class
// FIX-ME: it's abstract class
@observable
late Account account;
// FIX-ME: it's abstruct class
// FIX-ME: it's abstract class
@observable
late HavenBalance balance;
}