Skip to content

Commit

Permalink
Fix after review.
Browse files Browse the repository at this point in the history
  • Loading branch information
andreibancioiu committed Mar 14, 2024
1 parent 4985058 commit 4dc94e3
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/converters/transactionsConverter.ts
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@ import { IPlainTransactionObject, ITransaction } from "../interface";
import { Transaction } from "../transaction";

export class TransactionsConverter {
transactionToPlainObject(transaction: ITransaction): IPlainTransactionObject {
public transactionToPlainObject(transaction: ITransaction): IPlainTransactionObject {
const plainObject = {
nonce: Number(transaction.nonce),
value: transaction.value.toString(),
Expand Down

0 comments on commit 4dc94e3

Please sign in to comment.