Skip to content

Commit 3798094

Browse files
committed
update
1 parent bbeb5af commit 3798094

File tree

1 file changed

+4
-1
lines changed

1 file changed

+4
-1
lines changed

packages/eth-providers/src/base-provider.ts

Lines changed: 4 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -273,9 +273,12 @@ export interface PendingTx {
273273
hash: string;
274274
input: string;
275275
nonce: string;
276-
to: string;
276+
to: string | null;
277277
transactionIndex: null;
278278
value: string;
279+
v: string;
280+
r: string;
281+
s: string;
279282
}
280283
export interface TxpoolContent {
281284
pending: { [from: string]: { [nonce: string]: PendingTx } };

0 commit comments

Comments
 (0)