tapyrus 0.3.3 → 0.3.4
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- checksums.yaml +4 -4
- data/lib/tapyrus/script/tx_checker.rb +0 -3
- data/lib/tapyrus/version.rb +1 -1
- metadata +6 -6
checksums.yaml
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
---
|
|
2
2
|
SHA256:
|
|
3
|
-
metadata.gz:
|
|
4
|
-
data.tar.gz:
|
|
3
|
+
metadata.gz: 8b6715191d7f10eb9d2d6851660e71abcf1aa9866b2568d15774faa22af6e31d
|
|
4
|
+
data.tar.gz: e224860705d15fe929011d56db6d1ea959f13eadb32dcb915c859db5751ddf00
|
|
5
5
|
SHA512:
|
|
6
|
-
metadata.gz:
|
|
7
|
-
data.tar.gz:
|
|
6
|
+
metadata.gz: b96b08953e986ad0db52c4885df2315ee0c69748e19e9486c80898886ec74f763158b71dc972881f7831a099f91f896ba21d3d04552d258dcbc6057d9d56f08a
|
|
7
|
+
data.tar.gz: 84a9558443d75e15768d4f485dbff148fb8ac4014574e41a49050197f4d0eb18dfb5a3b5f0d3945d56a7da53c056c2db84a722ed9aed1b25df9da62be2f98aac
|
|
@@ -67,9 +67,6 @@ module Tapyrus
|
|
|
67
67
|
def check_sequence(sequence)
|
|
68
68
|
tx_sequence = tx.inputs[input_index].sequence
|
|
69
69
|
|
|
70
|
-
# Fail if the transaction's version number is not set high enough to trigger BIP 68 rules.
|
|
71
|
-
return false if tx.features < 2
|
|
72
|
-
|
|
73
70
|
# Sequence numbers with their most significant bit set are not consensus constrained.
|
|
74
71
|
# Testing that the transaction's sequence number do not have this bit set prevents using this property to get around a CHECKSEQUENCEVERIFY check.
|
|
75
72
|
return false unless tx_sequence & TxIn::SEQUENCE_LOCKTIME_DISABLE_FLAG == 0
|
data/lib/tapyrus/version.rb
CHANGED
metadata
CHANGED
|
@@ -1,14 +1,14 @@
|
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
|
2
2
|
name: tapyrus
|
|
3
3
|
version: !ruby/object:Gem::Version
|
|
4
|
-
version: 0.3.
|
|
4
|
+
version: 0.3.4
|
|
5
5
|
platform: ruby
|
|
6
6
|
authors:
|
|
7
7
|
- azuchi
|
|
8
|
-
autorequire:
|
|
8
|
+
autorequire:
|
|
9
9
|
bindir: exe
|
|
10
10
|
cert_chain: []
|
|
11
|
-
date: 2023-
|
|
11
|
+
date: 2023-06-28 00:00:00.000000000 Z
|
|
12
12
|
dependencies:
|
|
13
13
|
- !ruby/object:Gem::Dependency
|
|
14
14
|
name: ecdsa
|
|
@@ -442,7 +442,7 @@ homepage: https://github.com/chaintope/tapyrusrb
|
|
|
442
442
|
licenses:
|
|
443
443
|
- MIT
|
|
444
444
|
metadata: {}
|
|
445
|
-
post_install_message:
|
|
445
|
+
post_install_message:
|
|
446
446
|
rdoc_options: []
|
|
447
447
|
require_paths:
|
|
448
448
|
- lib
|
|
@@ -457,8 +457,8 @@ required_rubygems_version: !ruby/object:Gem::Requirement
|
|
|
457
457
|
- !ruby/object:Gem::Version
|
|
458
458
|
version: '0'
|
|
459
459
|
requirements: []
|
|
460
|
-
rubygems_version: 3.3.
|
|
461
|
-
signing_key:
|
|
460
|
+
rubygems_version: 3.3.23
|
|
461
|
+
signing_key:
|
|
462
462
|
specification_version: 4
|
|
463
463
|
summary: The implementation of Tapyrus Protocol for Ruby.
|
|
464
464
|
test_files: []
|