Skip to content

Commit

Permalink
Added possibility to override all key prefix
Browse files Browse the repository at this point in the history
Fixes #130
  • Loading branch information
Matthieu Vachon committed Mar 16, 2020
1 parent 5548ad4 commit 0a51422
Showing 1 changed file with 5 additions and 5 deletions.
10 changes: 5 additions & 5 deletions ecc/pubkey.go
Expand Up @@ -11,11 +11,11 @@ import (
"golang.org/x/crypto/ripemd160"
)

const PublicKeyPrefix = "PUB_"
const PublicKeyK1Prefix = "PUB_K1_"
const PublicKeyR1Prefix = "PUB_R1_"
const PublicKeyWAPrefix = "PUB_WA_"
const PublicKeyPrefixCompat = "EOS"
var PublicKeyPrefix = "PUB_"
var PublicKeyK1Prefix = "PUB_K1_"
var PublicKeyR1Prefix = "PUB_R1_"
var PublicKeyWAPrefix = "PUB_WA_"
var PublicKeyPrefixCompat = "EOS"

var publicKeyDataSize = new(int)

Expand Down

0 comments on commit 0a51422

Please sign in to comment.