Skip to content

Commit

Permalink
Updated binaries, minor tweaks after testing
Browse files Browse the repository at this point in the history
  • Loading branch information
BitcoinZavior committed Mar 3, 2023
1 parent 0cfcd07 commit d024607
Show file tree
Hide file tree
Showing 14 changed files with 28 additions and 53 deletions.
Binary file modified android/src/main/jniLibs/arm64-v8a/librust.so
Binary file not shown.
Binary file modified android/src/main/jniLibs/armeabi-v7a/librust.so
Binary file not shown.
Binary file modified android/src/main/jniLibs/x86/librust.so
Binary file not shown.
3 changes: 1 addition & 2 deletions example/ios/Podfile
Original file line number Diff line number Diff line change
@@ -1,5 +1,4 @@
# Uncomment this line to define a global platform for your project
# platform :ios, '11.0'
platform :ios, '12.0'

# CocoaPods analytics sends network stats synchronously affecting flutter build latency.
ENV['COCOAPODS_DISABLE_STATS'] = 'true'
Expand Down
6 changes: 3 additions & 3 deletions example/ios/Podfile.lock
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
PODS:
- bdk_flutter (0.3.0):
- bdk_flutter (0.27.1):
- Flutter
- Flutter (1.0.0)

Expand All @@ -14,9 +14,9 @@ EXTERNAL SOURCES:
:path: Flutter

SPEC CHECKSUMS:
bdk_flutter: e07886d29c53a9c7deba3bec3b20418ce5bd9787
bdk_flutter: 45bcefee47c051c8c42e507d6a3a708bdd0aadea
Flutter: f04841e97a9d0b0a8025694d0796dd46242b2854

PODFILE CHECKSUM: ef19549a9bc3046e7bb7d2fab4d021637c0c58a3
PODFILE CHECKSUM: 6998435987a000fdec9b2e1b5b1eef6d54bdba77

COCOAPODS: 1.11.3
11 changes: 4 additions & 7 deletions example/lib/main.dart
Original file line number Diff line number Diff line change
Expand Up @@ -72,13 +72,10 @@ class _MyAppState extends State<MyApp> {
if (blockchain == null) {
if (!isElectrumBlockchain) {
blockchain = await Blockchain.create(
config: BlockchainConfig.rpc(
config: RpcConfig(
url: 'http://127.0.0.1:18446',
authUserPass:
UserPass(username: 'polaruser', password: 'polarpass'),
network: Network.Regtest,
walletName: 'default')));
config: BlockchainConfig.esplora(
config: EsploraConfig(
baseUrl: 'https://blockstream.info/testnet/api',
stopGap: 10)));
} else {
blockchain = await Blockchain.create(
config: BlockchainConfig.electrum(
Expand Down
Loading

0 comments on commit d024607

Please sign in to comment.