Skip to content

Commit

Permalink
Merge pull request #833 from eth-brownie/feat-show-nonce
Browse files Browse the repository at this point in the history
feat: show nonce in pending tx output
  • Loading branch information
iamdefinitelyahuman authored Oct 30, 2020
2 parents db0aa1e + fa49798 commit 5b3950c
Showing 1 changed file with 1 addition and 0 deletions.
1 change: 1 addition & 0 deletions brownie/network/transaction.py
Original file line number Diff line number Diff line change
Expand Up @@ -299,6 +299,7 @@ def _await_transaction(self, required_confs: int = 1) -> None:
print(
f" Gas price: {color('bright blue')}{self.gas_price / 10 ** 9}{color} gwei"
f" Gas limit: {color('bright blue')}{self.gas_limit}{color}"
f" Nonce: {color('bright blue')}{self.nonce}{color}"
)

# await confirmation of tx in a separate thread which is blocking if required_confs > 0
Expand Down

0 comments on commit 5b3950c

Please sign in to comment.