Updated gasPrice to be optional for eip-1559 (#1610).

This commit is contained in:
Richard Moore 2021-06-25 22:58:01 -04:00
parent ba6854bdd5
commit e95708eedc
No known key found for this signature in database
GPG Key ID: 665176BE8E9DC651

View File

@ -59,7 +59,7 @@ export interface Transaction {
nonce: number; nonce: number;
gasLimit: BigNumber; gasLimit: BigNumber;
gasPrice: BigNumber; gasPrice?: BigNumber;
data: string; data: string;
value: BigNumber; value: BigNumber;