added force update of blockchain when a block is updated as temporary fix

This commit is contained in:
2023-07-20 22:09:59 +01:00
parent 9dcfcb6b55
commit 50085c6b11
2 changed files with 103 additions and 92 deletions

View File

@@ -137,8 +137,6 @@ func (api *WebapiInstance) apiProfileWrite(w http.ResponseWriter, r *http.Reques
newHeight, newVersion, status := api.Backend.UserBlockchain.ProfileWrite(fields)
api.Backend.LogError("apiProfileWrite", "Height: %v, Version %v", newHeight, newVersion)
EncodeJSON(api.Backend, w, r, apiBlockchainBlockStatus{Status: status, Height: newHeight, Version: newVersion})
}