From ecce85b9b56ad53970b080fc25379719a23151c8 Mon Sep 17 00:00:00 2001 From: M Date: Mon, 26 Jul 2021 14:05:52 +0300 Subject: [PATCH] Changed text for no inputs exception. --- .gitignore | 6 +++++- ios/Runner.xcodeproj/project.pbxproj | 6 +++--- lib/bitcoin/bitcoin_transaction_no_inputs_exception.dart | 4 ++-- 3 files changed, 10 insertions(+), 6 deletions(-) diff --git a/.gitignore b/.gitignore index b5c6f1e12..398fd61bd 100644 --- a/.gitignore +++ b/.gitignore @@ -100,4 +100,8 @@ ios/Flutter/.last_build_id /**/#**# **/google-services.json -**/GoogleService-Info.plist \ No newline at end of file +**/GoogleService-Info.plist + + +\#*\# +.\#* \ No newline at end of file diff --git a/ios/Runner.xcodeproj/project.pbxproj b/ios/Runner.xcodeproj/project.pbxproj index 8fba27457..4990b6f4b 100644 --- a/ios/Runner.xcodeproj/project.pbxproj +++ b/ios/Runner.xcodeproj/project.pbxproj @@ -366,7 +366,7 @@ ASSETCATALOG_COMPILER_APPICON_NAME = AppIcon; CLANG_ENABLE_MODULES = YES; CODE_SIGN_ENTITLEMENTS = Runner/Runner.entitlements; - CURRENT_PROJECT_VERSION = 51; + CURRENT_PROJECT_VERSION = 53; DEVELOPMENT_TEAM = 32J6BB6VUS; ENABLE_BITCODE = NO; EXCLUDED_SOURCE_FILE_NAMES = ""; @@ -510,7 +510,7 @@ ASSETCATALOG_COMPILER_APPICON_NAME = AppIcon; CLANG_ENABLE_MODULES = YES; CODE_SIGN_ENTITLEMENTS = Runner/Runner.entitlements; - CURRENT_PROJECT_VERSION = 51; + CURRENT_PROJECT_VERSION = 53; DEVELOPMENT_TEAM = 32J6BB6VUS; ENABLE_BITCODE = NO; EXCLUDED_SOURCE_FILE_NAMES = ""; @@ -546,7 +546,7 @@ ASSETCATALOG_COMPILER_APPICON_NAME = AppIcon; CLANG_ENABLE_MODULES = YES; CODE_SIGN_ENTITLEMENTS = Runner/Runner.entitlements; - CURRENT_PROJECT_VERSION = 51; + CURRENT_PROJECT_VERSION = 53; DEVELOPMENT_TEAM = 32J6BB6VUS; ENABLE_BITCODE = NO; EXCLUDED_SOURCE_FILE_NAMES = ""; diff --git a/lib/bitcoin/bitcoin_transaction_no_inputs_exception.dart b/lib/bitcoin/bitcoin_transaction_no_inputs_exception.dart index 2e925fdb3..d4397dead 100644 --- a/lib/bitcoin/bitcoin_transaction_no_inputs_exception.dart +++ b/lib/bitcoin/bitcoin_transaction_no_inputs_exception.dart @@ -1,4 +1,4 @@ class BitcoinTransactionNoInputsException implements Exception { @override - String toString() => 'No inputs for the transaction.'; -} \ No newline at end of file + String toString() => 'Not enough inputs available'; +}