We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 98b16cf commit 358822aCopy full SHA for 358822a
modules/sdk-coin-apt/src/lib/transaction/transaction.ts
@@ -55,12 +55,14 @@ export abstract class Transaction extends BaseTransaction {
55
this._gasUsed = 0;
56
this._expirationTime = Math.floor(Date.now() / 1e3) + SECONDS_PER_WEEK;
57
this._sequenceNumber = 0;
58
+ this._sender = AccountAddress.ZERO.toString();
59
this._senderSignature = {
60
publicKey: {
61
pub: Hex.fromHexInput(Transaction.EMPTY_PUBLIC_KEY).toString(),
62
},
63
signature: Transaction.EMPTY_SIGNATURE,
64
};
65
+ this._feePayerAddress = AccountAddress.ZERO.toString();
66
this._feePayerSignature = {
67
68
0 commit comments