An open API service indexing awesome lists of open source software.

https://github.com/lynn9388/pox

Some simple PoX implementations.
https://github.com/lynn9388/pox

golang pow pox proof-of-work

Last synced: 5 months ago
JSON representation

Some simple PoX implementations.

Awesome Lists containing this project

README

          

# PoX

[![Go Report Card](https://goreportcard.com/badge/github.com/lynn9388/pox)](https://goreportcard.com/report/github.com/lynn9388/pox)
[![Build Status](https://travis-ci.com/lynn9388/pox.svg?branch=master)](https://travis-ci.com/lynn9388/pox)

Some simple PoX implementations.

## PoW

[![GoDoc](https://godoc.org/github.com/lynn9388/pox/pow?status.svg)](https://godoc.org/github.com/lynn9388/pox/pow)

### Example

```go
pow := NewPoW([]byte("lynn9388"), 10, 0)
pow.Compute()
if !pow.IsValid() {
fmt.Println("PoW is not valid.")
}
```