Fixed typo in hashcash

This commit is contained in:
Tracker-Friendly 2024-07-30 15:32:32 +01:00
parent 1ae5222e33
commit 7d33099334
1 changed files with 1 additions and 1 deletions

View File

@ -403,7 +403,7 @@ func main() {
return
}
pow := hashcash.New(20, 16, "I love burgernotes!")
pow := hashcash.New(20, 16, "I love Burgernotes!")
ok = pow.Check(stamp)
if !ok {
c.JSON(400, gin.H{"error": "Invalid hashcash stamp"})