Skip to content

Commit

Permalink
chore: attend PR review comments
Browse files Browse the repository at this point in the history
  • Loading branch information
guidiaz committed Jun 14, 2023
1 parent 48459d9 commit 87458f1
Show file tree
Hide file tree
Showing 3 changed files with 3 additions and 3 deletions.
2 changes: 1 addition & 1 deletion .env_example
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
# W3GW : mandatory
# W3GW: mandatory
W3GW_PRIVATE_KEYS=[]
W3GW_SEED_PHRASE=""

Expand Down
2 changes: 1 addition & 1 deletion src/bin/w3gw.js
Original file line number Diff line number Diff line change
Expand Up @@ -89,7 +89,7 @@ console.info(
)
console.info()
console.info(
'Optionally, you can specify an ETH/JSONRPC endpoint different from the default one by setting:'
'Optionally, you can specify a custom ETH/JSONRPC endpoint by setting:'
)
console.info()
console.info(
Expand Down
2 changes: 1 addition & 1 deletion src/lib/ethers/wrapper.ts
Original file line number Diff line number Diff line change
Expand Up @@ -380,7 +380,7 @@ class WalletWrapper {
if (this.ethGasPriceFactor) {
return (await this.getGasPrice()).toHexString()
} else {
;(await this.provider.getGasPrice()).toHexString()
(await this.provider.getGasPrice()).toHexString()
}
}

Expand Down

0 comments on commit 87458f1

Please sign in to comment.