From e3c5cc8be26addf5b215ca1fe344d99d0eb2b2da Mon Sep 17 00:00:00 2001 From: Denis Subbotin Date: Fri, 8 Sep 2023 16:25:14 +0300 Subject: [PATCH] temporary disable signature check --- pkg/api/event_handlers.go | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/pkg/api/event_handlers.go b/pkg/api/event_handlers.go index 8affe3d5..b5a260e6 100644 --- a/pkg/api/event_handlers.go +++ b/pkg/api/event_handlers.go @@ -240,7 +240,7 @@ func (h Handler) EmulateMessageToAccountEvent(ctx context.Context, request *oas. } emulator, err := txemulator.NewTraceBuilder( txemulator.WithAccountsSource(h.storage), - txemulator.WithSignatureCheck(), + //txemulator.WithSignatureCheck(), todo: uncomment after tonspace switch to /v2/eallet/emulate txemulator.WithConfigBase64(configBase64)) if err != nil { return nil, toError(http.StatusInternalServerError, err)