Skip to content

Commit 9e4c34f

Browse files
committed
add closing backquote in comment
1 parent 2e08cc6 commit 9e4c34f

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

packages/tx/src/eip2930Transaction.ts

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -87,7 +87,7 @@ export default class AccessListEIP2930Transaction extends BaseTransaction<Access
8787
* Note: This means that the Buffer should start with 0x01.
8888
*
8989
* @deprecated this constructor alias is deprecated and will be removed
90-
* in favor of the `fromSerializedTx() constructor
90+
* in favor of the `fromSerializedTx()` constructor
9191
*/
9292
public static fromRlpSerializedTx(serialized: Buffer, opts: TxOptions = {}) {
9393
return AccessListEIP2930Transaction.fromSerializedTx(serialized, opts)
@@ -143,7 +143,7 @@ export default class AccessListEIP2930Transaction extends BaseTransaction<Access
143143
throw new Error('EIP-2930 not enabled on Common')
144144
}
145145

146-
// check the type of AccessList. If it's a JSON-type, we have to convert it to a buffer.
146+
// check the type of AccessList. If it's a JSON-type, we have to convert it to a Buffer.
147147
let usedAccessList
148148
if (accessList && isAccessList(accessList)) {
149149
this.AccessListJSON = accessList

0 commit comments

Comments
 (0)