Skip to content

Commit

Permalink
Putting some more gas fees to not have to wait too long
Browse files Browse the repository at this point in the history
  • Loading branch information
ineiti committed Jan 9, 2024
1 parent 873d889 commit 23f4fa7
Show file tree
Hide file tree
Showing 2 changed files with 11 additions and 3 deletions.
6 changes: 5 additions & 1 deletion scripts/sismondi.py
Original file line number Diff line number Diff line change
@@ -1,4 +1,8 @@
from brownie import SismondiNFT, network, config, accounts
from brownie import SismondiNFT, network, config, accounts, chain
priority = 5_000_000_000
network.priority_fee(priority)
network.max_fee(chain.base_fee + priority)

import logging, sys
logging.basicConfig(filename='operations.log', encoding='utf-8', level=logging.INFO)

Expand Down
8 changes: 6 additions & 2 deletions scripts/test_env.py
Original file line number Diff line number Diff line change
@@ -1,5 +1,9 @@
from brownie import HelloWorld, network, config, accounts
import logging, sys
from brownie import HelloWorld, network, config, accounts, chain
priority = 5_000_000_000
network.priority_fee(priority)
network.max_fee(chain.base_fee + priority)

import logging
logging.basicConfig(filename='operations.log', encoding='utf-8', level=logging.INFO)

if network.show_active() == "development":
Expand Down

0 comments on commit 23f4fa7

Please sign in to comment.