Skip to content

Commit 13f04a1

Browse files
committed
fixed merged conflict issue
1 parent cadb688 commit 13f04a1

File tree

1 file changed

+0
-20
lines changed

1 file changed

+0
-20
lines changed

src/model/transaction/AggregateTransaction.ts

Lines changed: 0 additions & 20 deletions
Original file line numberDiff line numberDiff line change
@@ -250,26 +250,6 @@ export class AggregateTransaction extends Transaction {
250250
this.type, this.networkType);
251251
}
252252

253-
/**
254-
* @internal
255-
* Sign transaction with cosignatories collected from cosigned transactions and creating a new SignedTransaction
256-
* For off chain Aggregated Complete Transaction co-signing.
257-
* @param initiatorAccount - Initiator account
258-
* @param {CosignatureSignedTransaction[]} cosignatureSignedTransactions - Array of cosigned transaction
259-
* @param generationHash - Network generation hash hex
260-
* @return {SignedTransaction}
261-
*/
262-
public signTransactionGivenSignatures(initiatorAccount: Account,
263-
cosignatureSignedTransactions: CosignatureSignedTransaction[],
264-
generationHash: string) {
265-
const aggregateTransaction = this.buildTransaction();
266-
const signedTransactionRaw = aggregateTransaction.signTransactionGivenSignatures(initiatorAccount,
267-
cosignatureSignedTransactions,
268-
generationHash);
269-
return new SignedTransaction(signedTransactionRaw.payload, signedTransactionRaw.hash, initiatorAccount.publicKey,
270-
this.type, this.networkType);
271-
}
272-
273253
/**
274254
* Check if account has signed transaction
275255
* @param publicAccount - Signer public account

0 commit comments

Comments
 (0)