Skip to content

Commit

Permalink
fix: make gas estimation non optional (#130)
Browse files Browse the repository at this point in the history
  • Loading branch information
sakulstra authored Mar 30, 2021
1 parent 0dc8f64 commit 82a4178
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/tx-builder/types/index.ts
Original file line number Diff line number Diff line change
Expand Up @@ -161,7 +161,7 @@ export type Configuration = {
export type EthereumTransactionTypeExtended = {
txType: eEthereumTxType;
tx: () => Promise<transactionType>;
gas?: GasResponse;
gas: GasResponse;
};

export type TransactionGenerationMethod = {
Expand Down

0 comments on commit 82a4178

Please sign in to comment.