File tree Expand file tree Collapse file tree 3 files changed +0
-53
lines changed Expand file tree Collapse file tree 3 files changed +0
-53
lines changed Original file line number Diff line number Diff line change @@ -184,20 +184,4 @@ export class AddressAliasTransaction extends Transaction {
184184 ) ;
185185 return transactionBuilder . serialize ( ) ;
186186 }
187-
188- /**
189- * @internal
190- * @returns {Uint8Array }
191- */
192- protected generateEmbeddedBytes ( ) : Uint8Array {
193- const transactionBuilder = new EmbeddedAddressAliasTransactionBuilder (
194- new KeyDto ( Convert . hexToUint8 ( this . signer ! . publicKey ) ) ,
195- this . versionToDTO ( ) ,
196- TransactionType . ADDRESS_ALIAS . valueOf ( ) ,
197- this . actionType . valueOf ( ) ,
198- new NamespaceIdDto ( this . namespaceId . id . toDTO ( ) ) ,
199- new AddressDto ( RawAddress . stringToAddress ( this . address . plain ( ) ) ) ,
200- ) ;
201- return transactionBuilder . serialize ( ) ;
202- }
203187}
Original file line number Diff line number Diff line change @@ -206,25 +206,4 @@ export class ModifyMultisigAccountTransaction extends Transaction {
206206 ) ;
207207 return transactionBuilder . serialize ( ) ;
208208 }
209-
210- /**
211- * @internal
212- * @returns {Uint8Array }
213- */
214- protected generateEmbeddedBytes ( ) : Uint8Array {
215- const transactionBuilder = new EmbeddedMultisigAccountModificationTransactionBuilder (
216- new KeyDto ( Convert . hexToUint8 ( this . signer ! . publicKey ) ) ,
217- this . versionToDTO ( ) ,
218- TransactionType . MODIFY_MULTISIG_ACCOUNT . valueOf ( ) ,
219- this . minRemovalDelta ,
220- this . minApprovalDelta ,
221- this . modifications . map ( ( modification ) => {
222- return new CosignatoryModificationBuilder (
223- modification . type . valueOf ( ) ,
224- new KeyDto ( Convert . hexToUint8 ( modification . cosignatoryPublicAccount . publicKey ) ) ,
225- ) ;
226- } ) ,
227- ) ;
228- return transactionBuilder . serialize ( ) ;
229- }
230209}
Original file line number Diff line number Diff line change @@ -179,20 +179,4 @@ export class MosaicAliasTransaction extends Transaction {
179179 ) ;
180180 return transactionBuilder . serialize ( ) ;
181181 }
182-
183- /**
184- * @internal
185- * @returns {Uint8Array }
186- */
187- protected generateEmbeddedBytes ( ) : Uint8Array {
188- const transactionBuilder = new EmbeddedMosaicAliasTransactionBuilder (
189- new KeyDto ( Convert . hexToUint8 ( this . signer ! . publicKey ) ) ,
190- this . versionToDTO ( ) ,
191- TransactionType . MOSAIC_ALIAS . valueOf ( ) ,
192- this . actionType . valueOf ( ) ,
193- new NamespaceIdDto ( this . namespaceId . id . toDTO ( ) ) ,
194- new MosaicIdDto ( this . mosaicId . id . toDTO ( ) ) ,
195- ) ;
196- return transactionBuilder . serialize ( ) ;
197- }
198182}
You can’t perform that action at this time.
0 commit comments