Skip to content

Commit

Permalink
Merge pull request dashpay#56 from cevap/issue-55
Browse files Browse the repository at this point in the history
[bug][snap][gitian][build][artworks] Fix wrong demo address in preparebudget and change proposal icon
  • Loading branch information
Cevap Master committed Jan 24, 2019
2 parents f310fba + 3b1c5e9 commit a35782f
Show file tree
Hide file tree
Showing 4 changed files with 251 additions and 4 deletions.
Binary file modified src/qt/res/icons/proposal.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file modified src/qt/res/icons/proposal_dark.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
247 changes: 247 additions & 0 deletions src/qt/res/src/voting-tab.svg
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
8 changes: 4 additions & 4 deletions src/rpc/budget.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -173,8 +173,8 @@ UniValue preparebudget(const UniValue& params, bool fHelp)
"\"xxxx\" (string) proposal fee hash (if successful) or error message (if failed)\n"

"\nExamples:\n" +
HelpExampleCli("preparebudget", "\"test-proposal\" \"https://forum.ioncoin.org/t/test-proposal\" 2 820800 \"D9oc6C3dttUbv8zd7zGNq1qKBGf4ZQ1XEE\" 500") +
HelpExampleRpc("preparebudget", "\"test-proposal\" \"https://forum.ioncoin.org/t/test-proposal\" 2 820800 \"D9oc6C3dttUbv8zd7zGNq1qKBGf4ZQ1XEE\" 500"));
HelpExampleCli("preparebudget", "\"test-proposal\" \"https://forum.ioncoin.org/t/test-proposal\" 2 820800 \"g8L9eGfnLAjnvtdS2cyFzR88Q4GNkAvTae\" 500") +
HelpExampleRpc("preparebudget", "\"test-proposal\" \"https://forum.ioncoin.org/t/test-proposal\" 2 820800 \"g8L9eGfnLAjnvtdS2cyFzR88Q4GNkAvTae\" 500"));

LOCK2(cs_main, pwalletMain->cs_wallet);

Expand Down Expand Up @@ -270,8 +270,8 @@ UniValue submitbudget(const UniValue& params, bool fHelp)
"\"xxxx\" (string) proposal hash (if successful) or error message (if failed)\n"

"\nExamples:\n" +
HelpExampleCli("submitbudget", "\"test-proposal\" \"https://forum.ioncoin.org/t/test-proposal\" 2 820800 \"D9oc6C3dttUbv8zd7zGNq1qKBGf4ZQ1XEE\" 500") +
HelpExampleRpc("submitbudget", "\"test-proposal\" \"https://forum.ioncoin.org/t/test-proposal\" 2 820800 \"D9oc6C3dttUbv8zd7zGNq1qKBGf4ZQ1XEE\" 500"));
HelpExampleCli("submitbudget", "\"test-proposal\" \"https://forum.ioncoin.org/t/test-proposal\" 2 820800 \"g8L9eGfnLAjnvtdS2cyFzR88Q4GNkAvTae\" 500") +
HelpExampleRpc("submitbudget", "\"test-proposal\" \"https://forum.ioncoin.org/t/test-proposal\" 2 820800 \"g8L9eGfnLAjnvtdS2cyFzR88Q4GNkAvTae\" 500"));

// Check these inputs the same way we check the vote commands:
// **********************************************************
Expand Down

0 comments on commit a35782f

Please sign in to comment.