File tree Expand file tree Collapse file tree 3 files changed +5
-5
lines changed
Expand file tree Collapse file tree 3 files changed +5
-5
lines changed Original file line number Diff line number Diff line change 11dnl require autoconf 2.60 (AS_ECHO/AS_ECHO_N)
22AC_PREREQ ( [ 2.60] )
33define ( _CLIENT_VERSION_MAJOR , 4 )
4- define ( _CLIENT_VERSION_MINOR , 1 )
4+ define ( _CLIENT_VERSION_MINOR , 2 )
55define ( _CLIENT_VERSION_REVISION , 0 )
66define ( _CLIENT_VERSION_BUILD , 0 )
77define ( _CLIENT_VERSION_IS_RELEASE , true )
Original file line number Diff line number Diff line change @@ -1625,7 +1625,7 @@ UniValue decodescript(const JSONRPCRequest& request)
16251625 r.push_back (Pair (" asset_name" , transfer.strName ));
16261626 r.push_back (Pair (" amount" , ValueFromAmount (transfer.nAmount )));
16271627 if (!transfer.message .empty ())
1628- r.push_back (Pair (" message" , transfer.message ));
1628+ r.push_back (Pair (" message" , EncodeAssetData ( transfer.message ) ));
16291629 if (transfer.nExpireTime )
16301630 r.push_back (Pair (" expire_time" , transfer.nExpireTime ));
16311631
Original file line number Diff line number Diff line change 1313// Update these four values on every release cycle
1414// These values should match the values in configure.ac
1515// Used for checking the Ravencoin releases on github
16- static const std::string SOFTWARE_VERSION = " v4.1 .0" ;
16+ static const std::string SOFTWARE_VERSION = " v4.2 .0" ;
1717static const int MAIN_SOFTWARE_VERSION = 4 ;
18- static const int SECOND_SOFTWARE_VERSION = 1 ;
18+ static const int SECOND_SOFTWARE_VERSION = 2 ;
1919static const int THIRD_SOFTWARE_VERSION = 0 ;
2020
21- static const int PROTOCOL_VERSION = 70027 ;
21+ static const int PROTOCOL_VERSION = 70028 ;
2222
2323// ! initial proto version, to be increased after version/verack negotiation
2424static const int INIT_PROTO_VERSION = 209 ;
You can’t perform that action at this time.
0 commit comments