Skip to content

Commit 5f96061

Browse files
committed
fixed merged conflict issue
1 parent 0dd6a91 commit 5f96061

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
@@ -173,26 +173,6 @@ export class AggregateTransaction extends Transaction {
173173
this.type, this.networkType);
174174
}
175175

176-
/**
177-
* @internal
178-
* Sign transaction with cosignatories collected from cosigned transactions and creating a new SignedTransaction
179-
* For off chain Aggregated Complete Transaction co-signing.
180-
* @param initiatorAccount - Initiator account
181-
* @param {CosignatureSignedTransaction[]} cosignatureSignedTransactions - Array of cosigned transaction
182-
* @param generationHash - Network generation hash hex
183-
* @return {SignedTransaction}
184-
*/
185-
public signTransactionGivenSignatures(initiatorAccount: Account,
186-
cosignatureSignedTransactions: CosignatureSignedTransaction[],
187-
generationHash: string) {
188-
const aggregateTransaction = this.buildTransaction();
189-
const signedTransactionRaw = aggregateTransaction.signTransactionGivenSignatures(initiatorAccount,
190-
cosignatureSignedTransactions,
191-
generationHash);
192-
return new SignedTransaction(signedTransactionRaw.payload, signedTransactionRaw.hash, initiatorAccount.publicKey,
193-
this.type, this.networkType);
194-
}
195-
196176
/**
197177
* Check if account has signed transaction
198178
* @param publicAccount - Signer public account

0 commit comments

Comments
 (0)