File tree Expand file tree Collapse file tree 2 files changed +8
-0
lines changed
modules/sdk-coin-apt/src/lib Expand file tree Collapse file tree 2 files changed +8
-0
lines changed Original file line number Diff line number Diff line change @@ -179,6 +179,10 @@ export abstract class Transaction extends BaseTransaction {
179179 this . _senderSignature = { publicKey, signature } ;
180180 }
181181
182+ getFeePayerPubKey ( ) : string {
183+ return this . _feePayerSignature . publicKey . pub ;
184+ }
185+
182186 addFeePayerSignature ( publicKey : PublicKey , signature : Buffer ) : void {
183187 this . _feePayerSignature = { publicKey, signature } ;
184188 }
Original file line number Diff line number Diff line change @@ -159,4 +159,8 @@ export abstract class TransactionBuilder extends BaseTransactionBuilder {
159159 addFeePayerAddress ( address : string ) : void {
160160 this . transaction . addFeePayerAddress ( address ) ;
161161 }
162+
163+ getFeePayerPubKey ( ) : string {
164+ return this . transaction . getFeePayerPubKey ( ) ;
165+ }
162166}
You can’t perform that action at this time.
0 commit comments