Skip to content

Commit

Permalink
Merge pull request #132 from LtbLightning/descriptor-fix
Browse files Browse the repository at this point in the history
Descriptor fix
  • Loading branch information
BitcoinZavior authored Apr 27, 2024
2 parents aeda33a + 27b2ae9 commit 3ecadf0
Show file tree
Hide file tree
Showing 8 changed files with 13 additions and 9 deletions.
2 changes: 1 addition & 1 deletion .github/workflows/precompile_binaries.yml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
on:
push:
branches: [v0.31.2-dev, master, main]
branches: [v0.31.2-dev.1, master, main]

name: Precompile Binaries

Expand Down
4 changes: 4 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,3 +1,7 @@
## [0.31.2-dev.1]
#### Fixed
- Invalid `Bip49Public`, `Bip84Public` & `Bip86Public`.

## [0.31.2-dev]
Updated Rust and Flutter dependencies.
#### APIs added
Expand Down
2 changes: 1 addition & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -39,7 +39,7 @@ To use the `bdk_flutter` package in your project, add it as a dependency in your

```dart
dependencies:
bdk_flutter: ^0.31.2-dev
bdk_flutter: ^0.31.2-dev.1
```

### Examples
Expand Down
2 changes: 1 addition & 1 deletion example/pubspec.lock
Original file line number Diff line number Diff line change
Expand Up @@ -39,7 +39,7 @@ packages:
path: ".."
relative: true
source: path
version: "0.31.2-dev"
version: "0.31.2-dev.1"
boolean_selector:
dependency: transitive
description:
Expand Down
2 changes: 1 addition & 1 deletion ios/bdk_flutter.podspec
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
Pod::Spec.new do |s|
s.name = 'bdk_flutter'
s.version = "0.31.2-dev"
s.version = "0.31.2-dev.1"
s.summary = 'A Flutter library for the Bitcoin Development Kit (https://bitcoindevkit.org/)'
s.description = <<-DESC
A new Flutter plugin project.
Expand Down
6 changes: 3 additions & 3 deletions lib/src/root.dart
Original file line number Diff line number Diff line change
Expand Up @@ -265,7 +265,7 @@ class Descriptor extends BdkDescriptor {
required KeychainKind keychain}) async {
try {
await Api.initialize();
final res = await BdkDescriptor.newBip44Public(
final res = await BdkDescriptor.newBip49Public(
network: network,
keychainKind: keychain,
publicKey: publicKey,
Expand Down Expand Up @@ -307,7 +307,7 @@ class Descriptor extends BdkDescriptor {
required KeychainKind keychain}) async {
try {
await Api.initialize();
final res = await BdkDescriptor.newBip44Public(
final res = await BdkDescriptor.newBip84Public(
network: network,
keychainKind: keychain,
publicKey: publicKey,
Expand Down Expand Up @@ -349,7 +349,7 @@ class Descriptor extends BdkDescriptor {
required KeychainKind keychain}) async {
try {
await Api.initialize();
final res = await BdkDescriptor.newBip44Public(
final res = await BdkDescriptor.newBip86Public(
network: network,
keychainKind: keychain,
publicKey: publicKey,
Expand Down
2 changes: 1 addition & 1 deletion macos/bdk_flutter.podspec
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
Pod::Spec.new do |s|
s.name = 'bdk_flutter'
s.version = "0.31.2-dev"
s.version = "0.31.2-dev.1"
s.summary = 'A Flutter library for the Bitcoin Development Kit (https://bitcoindevkit.org/)'
s.description = <<-DESC
A new Flutter plugin project.
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.31.2-dev
version: 0.31.2-dev.1
homepage: https://github.com/LtbLightning/bdk-flutter

environment:
Expand Down

0 comments on commit 3ecadf0

Please sign in to comment.