From 029176658839f7c3d42cd03dc87616982ccc893d Mon Sep 17 00:00:00 2001 From: Kukks Date: Fri, 18 Aug 2023 13:40:07 +0200 Subject: [PATCH] fix hub contract --- BTCPayApp.CommonServer/IBTCPayAppServerClient.cs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/BTCPayApp.CommonServer/IBTCPayAppServerClient.cs b/BTCPayApp.CommonServer/IBTCPayAppServerClient.cs index 943bbc2a7..ffcff3e3b 100644 --- a/BTCPayApp.CommonServer/IBTCPayAppServerClient.cs +++ b/BTCPayApp.CommonServer/IBTCPayAppServerClient.cs @@ -6,7 +6,7 @@ namespace BTCPayApp.CommonServer public interface IBTCPayAppServerClient { Task OnTransactionDetected(string txid); - void NewBlock(string block); + Task NewBlock(string block); } public interface IBTCPayAppServerHub