Skip to content

Commit

Permalink
fix(abstract-eth): fix chainid related changes
Browse files Browse the repository at this point in the history
  • Loading branch information
gianchandania committed Jan 3, 2024
1 parent 2c36e5e commit 982f5c2
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion modules/abstract-eth/src/lib/transactionBuilder.ts
Original file line number Diff line number Diff line change
Expand Up @@ -613,7 +613,7 @@ export abstract class TransactionBuilder extends BaseTransactionBuilder {
if (!this._transfer) {
throw new BuildTransactionError('Missing transfer information');
}
return this._transfer.coin(this._coinConfig.name).signAndBuild();
return this._transfer.signAndBuild();
}

private buildSendTransaction(): TxData {
Expand Down

0 comments on commit 982f5c2

Please sign in to comment.