Update node/config/def.go

Co-authored-by: raulk <raul@protocol.ai>
This commit is contained in:
Aarsh Shah 2021-06-14 09:42:22 +05:30 committed by GitHub
parent 3d086dfb43
commit bed2bc73a3
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

View File

@ -15,11 +15,11 @@ import (
) )
const ( const (
// DefaultRetrievalPricing configures the node to use the default retrieval pricing policy. // RetrievalPricingDefault configures the node to use the default retrieval pricing policy.
DefaultRetrievalPricing = "default" RetrievalPricingDefault = "default"
// ExternalRetrievalPricing configures the node to use the external retrieval pricing script // RetrievalPricingExternal configures the node to use the external retrieval pricing script
// configured by the user. // configured by the user.
ExternalRetrievalPricing = "external" RetrievalPricingExternal = "external"
) )
// Common is common config between full node and miner // Common is common config between full node and miner