Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Update spvblock.py (Sourcery refactored) #653

Conversation

sourcery-ai[bot]
Copy link

@sourcery-ai sourcery-ai bot commented Dec 19, 2022

Pull Request #652 refactored by Sourcery.

If you're happy with these changes, merge this Pull Request using the Squash and merge strategy.

NOTE: As code is pushed to the original Pull Request, Sourcery will
re-run and update (force-push) this Pull Request with new refactorings as
necessary. If Sourcery finds no refactorings at any point, this Pull Request
will be closed automatically.

See our documentation here.

Run Sourcery locally

Reduce the feedback loop during development by using the Sourcery editor plugin:

Review changes via command line

To manually merge these changes, make sure you're on the SatoshiNakamotoBitcoin-patch-12 branch, then run:

git fetch origin sourcery/SatoshiNakamotoBitcoin-patch-12
git merge --ff-only FETCH_HEAD
git reset HEAD^

Help us improve this pull request!

list = "curl -s 'https://bitcoinstrings.com/blk'" + responseC + """.txt | html2text | grep -v "blk" | grep -v "files" | grep -v "Advertisement" | grep -v "BitcoinStrings" """
list = f"""curl -s 'https://bitcoinstrings.com/blk'{responseC}.txt | html2text | grep -v "blk" | grep -v "files" | grep -v "Advertisement" | grep -v "BitcoinStrings" """
Copy link
Author

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Function decodeStrDat refactored with the following changes:

list = "curl '" + lang + ".wttr.in/" + selectData2 + "?F&" + unit + "'"
list = f"curl '{lang}.wttr.in/{selectData2}?F&{unit}'"
Copy link
Author

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Function wttrDataV1 refactored with the following changes:

list = "curl 'v2.wttr.in/" + selectData2 + "?" + unit + "&F&lang=" + lang + "'"
list = f"curl 'v2.wttr.in/{selectData2}?{unit}&F&lang={lang}'"
Copy link
Author

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Function wttrDataV2 refactored with the following changes:

list = "curl -s '" + selectFiat + ".rate.sx/?F&n=1'"
list = f"curl -s '{selectFiat}.rate.sx/?F&n=1'"
Copy link
Author

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Function rateSXList refactored with the following changes:

list = "curl -s '" + selectFiat + """.rate.sx/btc' | grep -v -E 'Use'"""
list = f"curl -s '{selectFiat}.rate.sx/btc' | grep -v -E 'Use'"
Copy link
Author

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Function rateSXGraph refactored with the following changes:

list = "curl -s 'https://1ml.com/node/'"+ responseC +"""/json'"""
list = f"curl -s 'https://1ml.com/node/'{responseC}/json'"
Copy link
Author

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Function getinfo refactored with the following changes:

list = "curl -s 'https://mempool.space/api/tx/" + responseC + """/hex' """
list = f"curl -s 'https://mempool.space/api/tx/{responseC}/hex' "
Copy link
Author

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Function readHexBlock refactored with the following changes:

list = "curl -s 'https://bitcoinexplorer.org/rpc-browser?method=" + responseC + """#Help-Content' | html2text | grep -E "Arguments" -A 777 | grep -E -v "Recent|https|http|version|commit|released|Hidden Service|on Twitter|explorer|###### Project|###### App Details|###### Links" """
list = f"""curl -s 'https://bitcoinexplorer.org/rpc-browser?method={responseC}#Help-Content' | html2text | grep -E "Arguments" -A 777 | grep -E -v "Recent|https|http|version|commit|released|Hidden Service|on Twitter|explorer|###### Project|###### App Details|###### Links" """
Copy link
Author

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Function console refactored with the following changes:

Comment on lines -3993 to +3996
list = "curl -s 'https://bitcoinexplorer.org/api/block/'" + responseC + """ | jq -C '.[]' | tr -d '{|}|]|,'"""
list = (
f"curl -s 'https://bitcoinexplorer.org/api/block/'{responseC}"
+ """ | jq -C '.[]' | tr -d '{|}|]|,'"""
)
Copy link
Author

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Function decodeHex refactored with the following changes:

@sourcery-ai
Copy link
Author

sourcery-ai bot commented Dec 19, 2022

Sourcery Code Quality Report

✅  Merging this PR will increase code quality in the affected files by 0.01%.

Quality metrics Before After Change
Complexity 7.22 ⭐ 7.22 ⭐ 0.00
Method Length 92.34 🙂 92.33 🙂 -0.01 👍
Working memory 9.33 🙂 9.33 🙂 0.00
Quality 62.18% 🙂 62.19% 🙂 0.01% 👍
Other metrics Before After Change
Lines 7249 7252 3
Changed files Quality Before Quality After Quality Change
pybitblock/SPV/spvblock.py 62.18% 🙂 62.19% 🙂 0.01% 👍

Here are some functions in these files that still need a tune-up:

File Function Complexity Length Working Memory Quality Recommendation
pybitblock/SPV/spvblock.py OpenNodecreatecharge 42 ⛔ 644 ⛔ 26 ⛔ 6.72% ⛔ Refactor to reduce nesting. Try splitting into smaller methods. Extract out complex expressions
pybitblock/SPV/spvblock.py lightningnetworkLOCALcontrol 25 😞 320 ⛔ 24 ⛔ 17.27% ⛔ Refactor to reduce nesting. Try splitting into smaller methods. Extract out complex expressions
pybitblock/SPV/spvblock.py OpenNodeiniciatewithdrawal 17 🙂 396 ⛔ 19 ⛔ 23.83% ⛔ Try splitting into smaller methods. Extract out complex expressions
pybitblock/SPV/spvblock.py bitcoincoremenuLOCALcontrolAOnchainONLY 24 😞 215 ⛔ 19 ⛔ 25.16% 😞 Refactor to reduce nesting. Try splitting into smaller methods. Extract out complex expressions
pybitblock/SPV/spvblock.py lnbitCreatePayWall 18 🙂 274 ⛔ 20 ⛔ 25.46% 😞 Try splitting into smaller methods. Extract out complex expressions

Legend and Explanation

The emojis denote the absolute quality of the code:

  • ⭐ excellent
  • 🙂 good
  • 😞 poor
  • ⛔ very poor

The 👍 and 👎 indicate whether the quality has improved or gotten worse with this pull request.


Please see our documentation here for details on how these metrics are calculated.

We are actively working on this report - lots more documentation and extra metrics to come!

Help us improve this quality report!

@curly60e curly60e merged commit a8dbdcf into SatoshiNakamotoBitcoin-patch-12 Dec 19, 2022
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
None yet
Projects
None yet
Development

Successfully merging this pull request may close these issues.

None yet

1 participant