Skip to content

Commit

Permalink
[3.0.2]: Release commit
Browse files Browse the repository at this point in the history
- Fixed outputsbyaddress, wrong address displayed
- Changed to final version
  • Loading branch information
globaltoken committed Oct 1, 2018
1 parent b53cc0a commit 6284563
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion configure.ac
Expand Up @@ -4,7 +4,7 @@ define(_CLIENT_VERSION_MAJOR, 3)
define(_CLIENT_VERSION_MINOR, 0)
define(_CLIENT_VERSION_REVISION, 2)
define(_CLIENT_VERSION_BUILD, 0)
define(_CLIENT_VERSION_IS_RELEASE, false)
define(_CLIENT_VERSION_IS_RELEASE, true)
define(_COPYRIGHT_GLT_START, 2017)
define(_COPYRIGHT_YEAR, 2018)
define(_COPYRIGHT_HOLDERS,[The %s developers])
Expand Down
2 changes: 1 addition & 1 deletion src/rpc/masternode.cpp
Expand Up @@ -375,7 +375,7 @@ UniValue masternode(const JSONRPCRequest& request)
UniValue entries(UniValue::VOBJ);
entries.pushKV("txhash", out.tx->GetHash().ToString());
entries.pushKV("txoutput", strprintf("%d", out.i));
obj.pushKV(strprintf("%s-%d", EncodeDestination(out.tx->tx->vout[out.i].scriptPubKey), counter), entries);
obj.pushKV(strprintf("%s-%d", EncodeDestination(address), counter), entries);
}
}

Expand Down

0 comments on commit 6284563

Please sign in to comment.