gnunet-svn
[Top][All Lists]
Advanced

[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]

[taler-wallet-core] branch master updated: fix #8490 also check 2a4dbc67


From: gnunet
Subject: [taler-wallet-core] branch master updated: fix #8490 also check 2a4dbc67e8d1e6a256
Date: Tue, 12 Mar 2024 15:55:56 +0100

This is an automated email from the git hooks/post-receive script.

sebasjm pushed a commit to branch master
in repository wallet-core.

The following commit(s) were added to refs/heads/master by this push:
     new 6af708aa2 fix #8490 also check 2a4dbc67e8d1e6a256
6af708aa2 is described below

commit 6af708aa26396667078a8da3d3fca4e894998b5d
Author: Sebastian <sebasjm@gmail.com>
AuthorDate: Tue Mar 12 11:55:49 2024 -0300

    fix #8490 also check 2a4dbc67e8d1e6a256
---
 packages/taler-util/src/operation.ts | 4 +---
 1 file changed, 1 insertion(+), 3 deletions(-)

diff --git a/packages/taler-util/src/operation.ts 
b/packages/taler-util/src/operation.ts
index 0debd09fd..07a216fe9 100644
--- a/packages/taler-util/src/operation.ts
+++ b/packages/taler-util/src/operation.ts
@@ -90,8 +90,6 @@ export interface OperationAlternative<T, B> {
 export interface OperationFailWithBody<B> {
   type: "fail";
 
-  httpResp: HttpResponse;
-
   case: keyof B;
   body: B[OperationFailWithBody<B>["case"]];
 }
@@ -120,7 +118,7 @@ export async function opKnownFailureWithBody<B>(
   case_: keyof B,
   body: B[typeof case_],
 ): Promise<OperationFailWithBody<B>> {
-  return { type: "fail", case: case_, body, httpResp: {} as any };
+  return { type: "fail", case: case_, body };
 }
 
 export async function opKnownAlternativeFailure<T extends HttpStatusCode, B>(

-- 
To stop receiving notification emails like this one, please contact
gnunet@gnunet.org.



reply via email to

[Prev in Thread] Current Thread [Next in Thread]