Skip to content

Commit 9701e43

Browse files
fix(sdk-coin-vet): invalid id for vet validation regn txn
Ticket: SC-4409
1 parent 8626186 commit 9701e43

File tree

1 file changed

+2
-1
lines changed

1 file changed

+2
-1
lines changed

modules/sdk-coin-vet/src/lib/transaction/transaction.ts

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -393,7 +393,8 @@ export class Transaction extends BaseTransaction {
393393
this.type === TransactionType.StakingDelegate ||
394394
this.type === TransactionType.StakingUnlock ||
395395
this.type === TransactionType.StakingWithdraw ||
396-
this.type === TransactionType.StakingClaim
396+
this.type === TransactionType.StakingClaim ||
397+
this.type === TransactionType.StakingLock
397398
) {
398399
transactionBody.reserved = {
399400
features: 1, // mark transaction as delegated i.e. will use gas payer

0 commit comments

Comments
 (0)