Skip to content

Commit

Permalink
revert: remove multi signature multi node feat for FileAppend
Browse files Browse the repository at this point in the history
  • Loading branch information
ivaylonikolov7 committed Sep 25, 2024
1 parent d9ea986 commit 7dda2f5
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion src/transaction/Transaction.js
Original file line number Diff line number Diff line change
Expand Up @@ -803,7 +803,7 @@ export default class Transaction extends Executable {
*
* @param {PublicKey} publicKey
* @param {Uint8Array | Uint8Array[]} signature
* @returns {this}
* @returns {NonNullable<this>}
*/
addSignature(publicKey, signature) {
const isSingleSignature = signature instanceof Uint8Array;
Expand Down
2 changes: 1 addition & 1 deletion test/integration/PrivateKey.js
Original file line number Diff line number Diff line change
Expand Up @@ -42,7 +42,7 @@ describe("PrivateKey signTransaction", function () {
expect(createdAccountId).to.exist;
});

it("File Append Transaction Execution with Multiple Nodes", async function () {
it.skip("File Append Transaction Execution with Multiple Nodes", async function () {
const operatorKey = env.operatorKey.publicKey;

// Create file
Expand Down

0 comments on commit 7dda2f5

Please sign in to comment.