OSDN Git Service

move code
[bytom/vapor.git] / consensus / general.go
index 4c77582..fee177c 100644 (file)
@@ -2,7 +2,6 @@ package consensus
 
 import (
        "encoding/binary"
-       "strings"
 
        "github.com/vapor/protocol/bc"
 )
@@ -195,11 +194,3 @@ func BlockSubsidy(height uint64) uint64 {
        }
        return 0
 }
-
-// IsBech32SegwitPrefix returns whether the prefix is a known prefix for segwit
-// addresses on any default or registered network.  This is used when decoding
-// an address string into a specific address type.
-func IsBech32SegwitPrefix(prefix string, params *Params) bool {
-       prefix = strings.ToLower(prefix)
-       return prefix == params.Bech32HRPSegwit+"1"
-}