Skip to content

Commit

Permalink
Updated Readme, code cleanup
Browse files Browse the repository at this point in the history
  • Loading branch information
BitcoinZavior committed Apr 24, 2023
1 parent 20f6bdd commit 4854b45
Show file tree
Hide file tree
Showing 5 changed files with 4 additions and 4 deletions.
2 changes: 1 addition & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -15,7 +15,7 @@ To use the `bdk_flutter` package in your project, add it as a dependency in your

```dart
dependencies:
bdk_flutter: ^0.27.1
bdk_flutter: ^0.27.3
```

### Examples
Expand Down
2 changes: 1 addition & 1 deletion ios/bdk_flutter.podspec
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@
#
Pod::Spec.new do |s|
s.name = 'bdk_flutter'
s.version = '0.27.1'
s.version = '0.27.3'
s.summary = 'A Flutter library for the Bitcoin Development Kit (https://bitcoindevkit.org/)'
s.description = <<-DESC
A new Flutter project.
Expand Down
1 change: 1 addition & 0 deletions lib/src/root.dart
Original file line number Diff line number Diff line change
Expand Up @@ -914,6 +914,7 @@ class TxBuilderResult {
final PartiallySignedTransaction psbt;

///The transaction details.
///
final TransactionDetails txDetails;

TxBuilderResult({required this.psbt, required this.txDetails});
Expand Down
2 changes: 1 addition & 1 deletion pubspec.yaml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
name: bdk_flutter
description: A Flutter library for the Bitcoin Development Kit(bdk) (https://bitcoindevkit.org/)
version: 0.27.2
version: 0.27.3
homepage: https://github.com/LtbLightning/bdk-flutter

environment:
Expand Down
1 change: 0 additions & 1 deletion test/bdk_flutter_test.dart
Original file line number Diff line number Diff line change
Expand Up @@ -197,7 +197,6 @@ void main() {
when(mockTxBuilder.drainTo("mv4rnyY3Su5gjcDNzbMLKBQkBicCtHUtFB"))
.thenReturn(mockTxBuilder);
when(mockTxBuilder.feeRate(any)).thenReturn(mockTxBuilder);
;
when(mockTxBuilder.finish(mockWallet))
.thenAnswer((_) async => mockTxBuilderResult);
final txBuilder = mockTxBuilder
Expand Down

0 comments on commit 4854b45

Please sign in to comment.