Skip to content

Commit 34c9c08

Browse files
committed
update change log
1 parent 77351d3 commit 34c9c08

File tree

2 files changed

+5
-14
lines changed

2 files changed

+5
-14
lines changed

CHANGELOG.md

+5-6
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@ All notable changes to this project will be documented in this file. The format
44

55
## Table of Contents
66

7-
- [1.1.10 - 2024-10-19](#119---2024-10-19)
7+
- [1.1.10 - 2024-10-20](#119---2024-10-20)
88
- [1.1.9 - 2024-10-01](#118---2024-10-01)
99
- [1.1.8 - 2024-09-17](#118---2024-09-17)
1010
- [1.1.7 - 2024-09-10](#117---2024-09-10)
@@ -17,7 +17,7 @@ All notable changes to this project will be documented in this file. The format
1717
- [1.1.0 - 2024-08-19](#110---2024-08-19)
1818
- [1.0.0 - 2024-06-06](#100---2024-06-06)
1919

20-
## [1.1.10] - 2024-10-19
20+
## [1.1.10] - 2024-10-20
2121
Big thanks for contributions from @wregulski
2222

2323
### Changed
@@ -29,9 +29,10 @@ All notable changes to this project will be documented in this file. The format
2929
- updated `merklepath.go` to use new helper functions from `transaction.merkletreeparent.go`
3030

3131
### Added
32-
- file `spv/verify.go` - chain tracker for whatsonchain.com
32+
- files `spv/verify.go`, `spv/verify_test.go` - chain tracker for whatsonchain.com
3333
- `spv.Verify()` ensures transaction scripts, merkle paths and fees are valid
3434
- `spv.VerifyScripts()` ensures transaction scripts are valid
35+
- file `docs/examples/verify_transaction/verify_transaction.go`
3536
- `publickey.ToDERHex()` returns a hex encoded public key
3637
- `script.Chunks()` helper method for `DecodeScript(scriptBytes)`
3738
- `script.PubKey()` returns a `*ec.PublicKey`
@@ -41,10 +42,8 @@ All notable changes to this project will be documented in this file. The format
4142
- `transaction.MerkleTreeParentStr()`
4243
- `transaction.MerkleTreeParentBytes()`
4344
- `transaction.MerkleTreeParents()`
44-
- file `transaction/chaintracker/whatsonchain.go` - chain tracker for whatsonchain.com
45+
- file `transaction/chaintracker/whatsonchain.go`, `whatsonchain_test.go` - chain tracker for whatsonchain.com
4546
- `chaintracker.NewWhatsOnChain` chaintracker
46-
- Example - using the whatsonchain chain tracker
47-
- Example - get address and p2pkh pubkey from script
4847

4948
## [1.1.9] - 2024-10-01
5049
### Changed

spv/verify.go

-8
Original file line numberDiff line numberDiff line change
@@ -67,13 +67,6 @@ func Verify(t *transaction.Transaction,
6767
txQueue = append(txQueue, input.SourceTransaction)
6868
}
6969

70-
// otherInputs := make([]*transaction.TransactionInput, 0, len(tx.Inputs)-1)
71-
// for i, otherInput := range tx.Inputs {
72-
// if i != vin {
73-
// otherInputs = append(otherInputs, otherInput)
74-
// }
75-
// }
76-
7770
if input.SourceTXID == nil {
7871
input.SourceTXID = input.SourceTransaction.TxID()
7972
}
@@ -86,7 +79,6 @@ func Verify(t *transaction.Transaction,
8679
fmt.Println(err)
8780
return false, err
8881
}
89-
9082
}
9183
}
9284

0 commit comments

Comments
 (0)