From 94b20b653edcb81f33c60d05acdfd2a9004a1061 Mon Sep 17 00:00:00 2001 From: steveluscher Date: Tue, 17 May 2022 16:12:26 -0700 Subject: [PATCH] fix: speed up transaction signing by removing code that does nothing --- web3.js/src/transaction.ts | 1 - 1 file changed, 1 deletion(-) diff --git a/web3.js/src/transaction.ts b/web3.js/src/transaction.ts index 33ecfaf0334841..c868aa33074439 100644 --- a/web3.js/src/transaction.ts +++ b/web3.js/src/transaction.ts @@ -599,7 +599,6 @@ export class Transaction { const message = this._compile(); this._partialSign(message, ...uniqueSigners); - this._verifySignatures(message.serialize(), true); } /**