tendermint/cmd/gen_account.go
2015-01-13 21:03:01 -08:00

21 lines
316 B
Go

package main
import (
"fmt"
"github.com/tendermint/tendermint/account"
. "github.com/tendermint/tendermint/binary"
)
func gen_account() {
privAccount := account.GenPrivAccount()
privAccountJSONBytes := JSONBytes(privAccount)
fmt.Printf(`Generated a new account!
%v
`,
string(privAccountJSONBytes),
)
}