Created
March 21, 2019 16:27
-
-
Save thephez/908c664d26ed18c60bd739baac61cd17 to your computer and use it in GitHub Desktop.
Check for P2P, RPC, and CLI changes in Dash Core
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
#!/bin/bash | |
# P2P changes | |
git diff master develop src/protocol.cpp | |
# Spork changes | |
git diff master develop src/spork.h | |
# CLI changes | |
git diff master develop src/init.cpp | grep 'strUsage' | |
# RPC additions/deletions | |
git diff master develop src/rpc/*.cpp | grep '{ "' |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment