Skip to content

Commit be5f8b6

Browse files
committed
Minor formatting changes
1 parent 0cc43bb commit be5f8b6

File tree

1 file changed

+6
-4
lines changed

1 file changed

+6
-4
lines changed

README.md

Lines changed: 6 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -9,13 +9,15 @@
99
[![Sponsor](https://img.shields.io/badge/sponsor-BitcoinSchema-181717.svg?logo=github&style=flat&v=3)](https://github.com/sponsors/BitcoinSchema)
1010
[![Donate](https://img.shields.io/badge/donate-bitcoin-ff9900.svg?logo=bitcoin&style=flat&v=3)](https://gobitcoinsv.com/#sponsor?utm_source=github&utm_medium=sponsor-link&utm_campaign=go-boost&utm_term=go-boost&utm_content=go-boost)
1111
<br>
12+
<br>
1213

1314
## Installation
1415

1516
**go-boost** requires a [supported release of Go](https://golang.org/doc/devel/release.html#policy).
1617
```shell script
1718
go get -u github.com/bitcoinschema/go-boost
1819
```
20+
<br>
1921

2022
## Documentation
2123
View the generated [documentation](https://pkg.go.dev/github.com/bitcoinschema/go-boost)
@@ -29,8 +31,8 @@ It takes a BOB formatted transaction and produces an easy-to-use BOOST struct wi
2931

3032
```go
3133
type Boost struct {
32-
Redeem BoostRedeem `json:"redeem" bson:"redeem"`
33-
Spend BoostSpend `json:"spend" bson:"spend"`
34+
Redeem Redeem `json:"redeem" bson:"redeem"`
35+
Spend Spend `json:"spend" bson:"spend"`
3436
}
3537
```
3638
<br>
@@ -64,7 +66,7 @@ var b *boost.Boost
6466
b, err = boostNewFromTape(&bobData.In[0].Tape[0])
6567
```
6668

67-
### V1 Contract Spend Example
69+
V1 Contract Spend Example
6870
```go
6971
// Get BOB data from string
7072
bobData, err := bob.NewFromRawTxString(boostTx)
@@ -91,7 +93,7 @@ boost.BoostSpend Result:
9193
}
9294
```
9395
94-
More examples can be found in tests.
96+
_More examples can be found in tests._
9597
9698
<br>
9799

0 commit comments

Comments
 (0)