Skip to content

Instantly share code, notes, and snippets.

@thephez
Created March 21, 2019 16:27
Show Gist options
  • Save thephez/908c664d26ed18c60bd739baac61cd17 to your computer and use it in GitHub Desktop.
Save thephez/908c664d26ed18c60bd739baac61cd17 to your computer and use it in GitHub Desktop.
Check for P2P, RPC, and CLI changes in Dash Core
#!/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