Skip to content

Commit

Permalink
version
Browse files Browse the repository at this point in the history
  • Loading branch information
elnosh committed Feb 5, 2025
1 parent 8ef0d9d commit 7fdf168
Show file tree
Hide file tree
Showing 3 changed files with 4 additions and 4 deletions.
2 changes: 1 addition & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -28,7 +28,7 @@ Implemented [NUTs](https://github.com/cashubtc/nuts/):
- [x] [NUT-13](https://github.com/cashubtc/nuts/blob/main/13.md)
- [x] [NUT-14](https://github.com/cashubtc/nuts/blob/main/14.md)
- [x] [NUT-15](https://github.com/cashubtc/nuts/blob/main/15.md)
- [ ] [NUT-17](https://github.com/cashubtc/nuts/blob/main/17.md)
- [x] [NUT-17](https://github.com/cashubtc/nuts/blob/main/17.md)
- [ ] [NUT-18](https://github.com/cashubtc/nuts/blob/main/18.md)
- [ ] [NUT-20](https://github.com/cashubtc/nuts/blob/main/20.md)

Expand Down
4 changes: 2 additions & 2 deletions cmd/nutw/nutw.go
Original file line number Diff line number Diff line change
Expand Up @@ -633,8 +633,8 @@ func pay(ctx *cli.Context) error {
printErr(errors.New("amount has to be greater than 0"))
}
if uint64(amountToUse) > mintBalance {
errmsg := fmt.Errorf(`amount specified '%v' is greater than balance '%v'
for that mint`, amountToUse, mintBalance)
errmsg := fmt.Errorf(`amount specified '%v' is greater than balance '%v' for that mint`,
amountToUse, mintBalance)
printErr(errmsg)
}

Expand Down
2 changes: 1 addition & 1 deletion mint/mint.go
Original file line number Diff line number Diff line change
Expand Up @@ -1497,7 +1497,7 @@ func (m *Mint) SetMintInfo(mintInfo MintInfo) {

info := nut06.MintInfo{
Name: mintInfo.Name,
Version: "gonuts/0.3.0",
Version: "gonuts/0.4.0",
Description: mintInfo.Description,
LongDescription: mintInfo.LongDescription,
Contact: mintInfo.Contact,
Expand Down

0 comments on commit 7fdf168

Please # to comment.