Skip to content
This repository has been archived by the owner on Oct 28, 2022. It is now read-only.

Commit

Permalink
Fix bug with grdb validOrInvalid transaction query. Update pod versions.
Browse files Browse the repository at this point in the history
  • Loading branch information
ant013 committed Jan 6, 2020
1 parent cbcb40e commit 1068fed
Show file tree
Hide file tree
Showing 6 changed files with 11 additions and 11 deletions.
4 changes: 2 additions & 2 deletions BitcoinCashKit.swift.podspec
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
Pod::Spec.new do |s|
s.name = 'BitcoinCashKit.swift'
s.module_name = 'BitcoinCashKit'
s.version = '0.13.1'
s.version = '0.13.2'
s.summary = 'BitcoinCash library for Swift.'

s.description = <<-DESC
Expand All @@ -22,7 +22,7 @@ BitcoinCashKit implements BitcoinCash protocol in Swift. It is an implementation

s.requires_arc = true

s.dependency 'BitcoinCore.swift', '~> 0.13.1'
s.dependency 'BitcoinCore.swift', '~> 0.13.2'
s.dependency 'OpenSslKit.swift', '~> 1.0'
s.dependency 'Secp256k1Kit.swift', '~> 1.0'
s.dependency 'HdWalletKit.swift', '~> 1.4'
Expand Down
2 changes: 1 addition & 1 deletion BitcoinCore.swift.podspec
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
Pod::Spec.new do |s|
s.name = 'BitcoinCore.swift'
s.module_name = 'BitcoinCore'
s.version = '0.13.1'
s.version = '0.13.2'
s.summary = 'Core library Bitcoin derived wallets for Swift.'

s.description = <<-DESC
Expand Down
2 changes: 1 addition & 1 deletion BitcoinCore/Classes/Storage/GrdbStorage.swift
Original file line number Diff line number Diff line change
Expand Up @@ -505,7 +505,7 @@ extension GrdbStorage: IStorage {

let sql = """
SELECT transactions.*
FROM (SELECT * FROM invalid_transactions UNION ALL SELECT transactions.*, x'' AS transactionInfoJson FROM transactions) AS transactions
FROM (SELECT * FROM invalid_transactions UNION ALL SELECT transactions.* FROM transactions) AS transactions
WHERE transactions.uid = ?
"""

Expand Down
6 changes: 3 additions & 3 deletions BitcoinKit.swift.podspec
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
Pod::Spec.new do |s|
s.name = 'BitcoinKit.swift'
s.module_name = 'BitcoinKit'
s.version = '0.13.1'
s.version = '0.13.2'
s.summary = 'Bitcoin library for Swift.'

s.description = <<-DESC
Expand All @@ -22,8 +22,8 @@ BitcoinKit implements Bitcoin protocol in Swift.

s.requires_arc = true

s.dependency 'BitcoinCore.swift', '~> 0.13.1'
s.dependency 'Hodler.swift', '~> 0.13.1'
s.dependency 'BitcoinCore.swift', '~> 0.13.2'
s.dependency 'Hodler.swift', '~> 0.13.2'
s.dependency 'OpenSslKit.swift', '~> 1.0'
s.dependency 'Secp256k1Kit.swift', '~> 1.0'
s.dependency 'HdWalletKit.swift', '~> 1.4'
Expand Down
4 changes: 2 additions & 2 deletions DashKit.swift.podspec
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
Pod::Spec.new do |s|
s.name = 'DashKit.swift'
s.module_name = 'DashKit'
s.version = '0.13.1'
s.version = '0.13.2'
s.summary = 'Dash library for Swift.'

s.description = <<-DESC
Expand All @@ -22,7 +22,7 @@ DashKit implements Dash protocol in Swift.

s.requires_arc = true

s.dependency 'BitcoinCore.swift', '~> 0.13.1'
s.dependency 'BitcoinCore.swift', '~> 0.13.2'
s.dependency 'OpenSslKit.swift', '~> 1.0'
s.dependency 'Secp256k1Kit.swift', '~> 1.0'
s.dependency 'BlsKit.swift', '~> 1.0'
Expand Down
4 changes: 2 additions & 2 deletions Hodler.swift.podspec
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
Pod::Spec.new do |s|
s.name = 'Hodler.swift'
s.module_name = 'Hodler'
s.version = '0.13.1'
s.version = '0.13.2'
s.summary = 'Hodler library for Swift.'

s.description = <<-DESC
Expand All @@ -21,7 +21,7 @@ Hodler plugin enables to send/receive/spend time-locked transactions.

s.requires_arc = true

s.dependency 'BitcoinCore.swift', '~> 0.13.1'
s.dependency 'BitcoinCore.swift', '~> 0.13.2'
s.dependency 'OpenSslKit.swift', '~> 1.0'
s.dependency 'Secp256k1Kit.swift', '~> 1.0'
end

0 comments on commit 1068fed

Please sign in to comment.