mirror of
https://github.com/status-im/status-go.git
synced 2025-02-01 17:38:36 +00:00
Pass opensea key from env
This commit is contained in:
parent
86926258ee
commit
12ccff417d
@ -54,6 +54,8 @@ var (
|
||||
// ErrRPCClientUnavailable is returned if an RPC client can't be retrieved.
|
||||
// This is a normal situation when a node is stopped.
|
||||
ErrRPCClientUnavailable = errors.New("JSON-RPC client is unavailable")
|
||||
// OpenseaKeyFromEnv passed from on env var during build time
|
||||
OpenseaKeyFromEnv string
|
||||
)
|
||||
|
||||
func (b *StatusNode) initServices(config *params.NodeConfig) error {
|
||||
@ -114,7 +116,11 @@ func (b *StatusNode) initServices(config *params.NodeConfig) error {
|
||||
}
|
||||
|
||||
if config.WalletConfig.Enabled {
|
||||
walletService := b.walletService(accountsFeed, config.WalletConfig.OpenseaAPIKey)
|
||||
openseaKey := config.WalletConfig.OpenseaAPIKey
|
||||
if len(openseaKey) == 0 {
|
||||
openseaKey = OpenseaKeyFromEnv
|
||||
}
|
||||
walletService := b.walletService(accountsFeed, openseaKey)
|
||||
services = append(services, walletService)
|
||||
}
|
||||
|
||||
|
Loading…
x
Reference in New Issue
Block a user