From e50f7ec92826ef8f5e316bc5161b07cd005da588 Mon Sep 17 00:00:00 2001 From: ghassmo Date: Sat, 23 Oct 2021 12:14:34 +0300 Subject: [PATCH] gateway: print more clear message when slabstore has higher index than gateway's slabstore --- src/service/gateway.rs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/service/gateway.rs b/src/service/gateway.rs index aea76a91b..424fa4275 100644 --- a/src/service/gateway.rs +++ b/src/service/gateway.rs @@ -228,7 +228,7 @@ impl GatewayClient { if last_index < local_last_index { return Err(Error::SlabsStore( "Local slabstore has higher index than gateway's slabstore. - Delete slabstore database \"darkfid_client.db\"." + Run \" darkfid -r \" to refresh the database." .into(), )); }