From c7f072f4d514f4000a83aa8e5f094dae3f34e5fd Mon Sep 17 00:00:00 2001 From: Jim Toth Date: Fri, 23 Feb 2024 16:02:33 -0500 Subject: [PATCH] Don't sign publication bundle tx --- src/publications/authenticated-publications.ts | 6 ------ 1 file changed, 6 deletions(-) diff --git a/src/publications/authenticated-publications.ts b/src/publications/authenticated-publications.ts index 1edb4db..069fa4b 100644 --- a/src/publications/authenticated-publications.ts +++ b/src/publications/authenticated-publications.ts @@ -187,12 +187,6 @@ export default class AuthenticatedArtByCityPublications tx.addTag('Bundle-Version', '2.0.0') tx.addTag('Entity-Type', 'publication') - const signer = this.signer instanceof ArweaveSigner - /* @ts-expect-error signer types */ - ? this.signer.jwk - : 'use_wallet' - await this.arweave.transactions.sign(tx, signer) - return tx } }