Skip to content

Commit

Permalink
fix LTC P2SH version + version bump
Browse files Browse the repository at this point in the history
  • Loading branch information
doersf committed May 30, 2022
1 parent 4e0f874 commit e7379e0
Show file tree
Hide file tree
Showing 4 changed files with 4 additions and 3 deletions.
1 change: 1 addition & 0 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -17,6 +17,7 @@ Or install it yourself as:
$ gem install block_io

## Changelog
*05/30/22*: Version 3.0.5 fixes Litecoin P2SH address version (properly now).
*12/26/21*: Version 3.0.4 drops support for EOL Ruby 2.4, 2.5. Supports Ruby 3.1.
*09/28/21*: Version 3.0.3 supports witness_v1 outputs (Bech32m).
*07/21/21*: Version 3.0.2 fixes Litecoin P2SH address version.
Expand Down
2 changes: 1 addition & 1 deletion block_io.gemspec
Original file line number Diff line number Diff line change
Expand Up @@ -22,7 +22,7 @@ Gem::Specification.new do |spec|
spec.add_development_dependency "rake", "~> 13.0", ">= 13.0"
spec.add_development_dependency "rspec", "~> 3.6", ">= 3.6"
spec.add_development_dependency "webmock", "~> 3.12", "< 4.0"
spec.add_runtime_dependency "bitcoinrb", "~> 1.0", "= 1.0.0"
spec.add_runtime_dependency "bitcoinrb", "~> 1.0", "< 1.2.0"
spec.add_runtime_dependency "http", ">= 4.4.1", "< 6.0"
spec.add_runtime_dependency "oj", "~> 3.0", "< 4.0"
spec.add_runtime_dependency "connection_pool", ">= 2.2", "< 3.0"
Expand Down
2 changes: 1 addition & 1 deletion lib/block_io/chainparams/LTC.yml
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
--- !ruby/object:Bitcoin::ChainParams
network: "LTC"
address_version: "30"
p2sh_version: "50"
p2sh_version: "32"
bech32_hrp: "ltc"
privkey_version: "b0"
extended_privkey_version: "019d9cfe"
Expand Down
2 changes: 1 addition & 1 deletion lib/block_io/version.rb
Original file line number Diff line number Diff line change
@@ -1,3 +1,3 @@
module BlockIo
VERSION = "3.0.4"
VERSION = "3.0.5"
end

0 comments on commit e7379e0

Please sign in to comment.