Skip to content

Commit 23d0123

Browse files
authored
Merge pull request #5 from bsv-blockchain/dev/rolling-updates
[FEAT] - Repo Updates
2 parents 86e5cc5 + 56b07ed commit 23d0123

File tree

5 files changed

+12
-11
lines changed

5 files changed

+12
-11
lines changed

Makefile

Lines changed: 0 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -4,8 +4,6 @@ include .make/common.mk
44
# Common Golang makefile commands & variables between projects
55
include .make/go.mk
66

7-
# Temporary makefile for initializing a new Go project template (remove this!)
8-
97
## Set default repository details if not provided
108
REPO_NAME ?= go-subtree
119
REPO_OWNER ?= bsv-blockchain

README.md

Lines changed: 5 additions & 8 deletions
Original file line numberDiff line numberDiff line change
@@ -74,7 +74,6 @@
7474
<br/>
7575

7676
## 🗂️ Table of Contents
77-
* [What's Inside](#-whats-inside)
7877
* [Installation](#-installation)
7978
* [Documentation](#-documentation)
8079
* [Examples & Tests](#-examples--tests)
@@ -87,8 +86,6 @@
8786

8887
<br/>
8988

90-
## 🧩 What's Inside
91-
9289
## 📦 Installation
9390

9491
**go-subtree** requires a [supported release of Go](https://golang.org/doc/devel/release.html#policy).
@@ -290,7 +287,7 @@ make test
290287

291288
## ⚡ Benchmarks
292289

293-
Run the Go [benchmarks](template_benchmark_test.go):
290+
Run the Go [benchmarks](subtree_benchmark_test.go):
294291

295292
```bash script
296293
make bench
@@ -327,9 +324,9 @@ Edit `AGENTS.md` first when adjusting these policies, and keep the other files i
327324
<br/>
328325

329326
## 👥 Maintainers
330-
| [<img src="https://github.com/icellan.png" height="50" alt="Siggi" />](https://github.com/icellan) |
331-
|:--------------------------------------------------------------------------------------------------:|
332-
| [Siggi](https://github.com/icellan) |
327+
| [<img src="https://github.com/icellan.png" height="50" alt="Siggi" />](https://github.com/icellan) | [<img src="https://github.com/ordishs.png" height="50" alt="Simon" />](https://github.com/ordishs) | [<img src="https://github.com/freemans13.png" height="50" alt="Stu" />](https://github.com/freemans13) | [<img src="https://github.com/liam.png" height="50" alt="Liam" />](https://github.com/liam) | [<img src="https://github.com/gokutheengineer.png" height="50" alt="Gokhan" />](https://github.com/gokutheengineer) |
328+
|:--------------------------------------------------------------------------------------------------:|:--------------------------------------------------------------------------------------------------:|:------------------------------------------------------------------------------------------------------:|:-------------------------------------------------------------------------------------------:|:-------------------------------------------------------------------------------------------------------------------:|
329+
| [Siggi](https://github.com/icellan) | [Simon](https://github.com/ordishs) | [Stu](https://github.com/freemans13) | [Liam](https://github.com/liam) | [Gokhan](https://github.com/gokutheengineer) |
333330

334331
<br/>
335332

@@ -347,4 +344,4 @@ You can also support this project by [becoming a sponsor on GitHub](https://gith
347344

348345
## 📝 License
349346

350-
[![License](https://img.shields.io/github/license/bsv-blockchain/go-subtree.svg?style=flat&v=1)](LICENSE)
347+
[![License](https://img.shields.io/badge/license-OpenBSV-blue?style=flat&logo=springsecurity&logoColor=white)](LICENSE)

examples/examples.go

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,4 @@
1+
// Package examples provides example implementations of the subtree package
2+
package examples
3+
4+
// TODO - Add example implementations of the subtree package

subtree_benchmark_test.go

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -3,11 +3,12 @@ package subtree_test
33
import (
44
"crypto/rand"
55
"encoding/binary"
6+
"testing"
7+
68
"github.com/bsv-blockchain/go-subtree"
79
"github.com/libsv/go-bt/v2/chainhash"
810
"github.com/stretchr/testify/assert"
911
"github.com/stretchr/testify/require"
10-
"testing"
1112
)
1213

1314
func BenchmarkSubtree_AddNode(b *testing.B) {

subtree_fuzz_test.go

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1 @@
1+
package subtree

0 commit comments

Comments
 (0)