From 57c5088a1f2595a132d1134e3f43409c7f56c15a Mon Sep 17 00:00:00 2001 From: Derrick Hammer Date: Sun, 10 Mar 2024 14:35:05 -0400 Subject: [PATCH] fix: max_rpc_price needs to be max_rpc_sc_price --- config/sia.go | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/config/sia.go b/config/sia.go index e309400..312f18b 100644 --- a/config/sia.go +++ b/config/sia.go @@ -18,7 +18,7 @@ type SiaConfig struct { func (s SiaConfig) Defaults() map[string]interface{} { return map[string]interface{}{ - "max_rpc_price": 1, + "max_rpc_sc_price": 1, "price_history_days": 90, } }