Skip to content

Commit 4c9e252

Browse files
committed
✨ Now possible to use float values for miner tip
1 parent 8d7a680 commit 4c9e252

File tree

4 files changed

+7
-7
lines changed

4 files changed

+7
-7
lines changed

pdm.lock

Lines changed: 4 additions & 4 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

pyproject.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -16,7 +16,7 @@ dependencies = [
1616
"cement[yaml]>=3.0.10",
1717
"cement[tabulate]>=3.0.10",
1818
"web3>=6.0.0",
19-
"web3client>=1.3.9",
19+
"web3client>=1.3.10",
2020
"peewee>=3.15.3",
2121
"cryptography>=38.0.3",
2222
"ruamel.yaml>=0.17.21",

src/web3cli/main.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -45,7 +45,7 @@
4545
"debug": False,
4646
"default_chain": "eth",
4747
"default_signer": None,
48-
"default_priority_fee": 0.1,
48+
"default_priority_fee": 0.0001,
4949
"db_file": os.path.join(
5050
os.path.expanduser("~"), ".web3cli", "database", "web3cli.sqlite"
5151
),

web3cli.example.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -23,7 +23,7 @@ web3cli:
2323
### Use this signer unless otherwise specified
2424
default_signer: null
2525
### Default value for the maximum priority fee to tip the validator
26-
default_priority_fee: 0.1
26+
default_priority_fee: 0.0001
2727
### Location of the database - will be created if it does not exist.
2828
db_file: ~/.web3cli/database/web3cli.sqlite
2929
### Whether to pre-load web3cli with popoular chains, tokens, etc.

0 commit comments

Comments
 (0)