github.com/neatio-net/neatio@v1.7.3-0.20231114194659-f4d7a2226baa/chain/accounts/keystore/keystore1.go (about)

     1  package keystore
     2  
     3  import (
     4  	"github.com/neatio-net/neatio/utilities/common"
     5  )
     6  
     7  func KeyFileName(keyAddr common.Address) string {
     8  	return keyFileName(keyAddr)
     9  }
    10  
    11  func WriteKeyStore(filepath string, keyjson []byte) error {
    12  	return writeKeyFile(filepath, keyjson)
    13  }