Skip to content

Commit

Permalink
Merge pull request #2551 from bitshares/testnet_release
Browse files Browse the repository at this point in the history
Merge release branch into testnet branch
  • Loading branch information
abitmore authored Dec 12, 2021
2 parents 08e62a2 + 162f35c commit e6e687a
Show file tree
Hide file tree
Showing 6 changed files with 14 additions and 10 deletions.
2 changes: 1 addition & 1 deletion CONTRIBUTORS.txt
Original file line number Diff line number Diff line change
Expand Up @@ -44,6 +44,7 @@ Anzhy Cherrnyavski <[email protected]>
Tengfei Niu <[email protected]>
Tiago Peralta <[email protected]>
ioBanker <[email protected]>
xiao93 <[email protected]>
Karl Semich <[email protected]>
SahkanDesertHawk <[email protected]>
Scott Howard <[email protected]>
Expand All @@ -55,7 +56,6 @@ d.yakovitsky <[email protected]>
ddylko <ddylko@ddylkoPC>
iHashFury <[email protected]>
necklace <[email protected]>
xiao93 <[email protected]>
xuquan316 <[email protected]>
Bartek Wrona <[email protected]>
BhuzOr <[email protected]>
Expand Down
2 changes: 1 addition & 1 deletion Doxyfile
Original file line number Diff line number Diff line change
Expand Up @@ -38,7 +38,7 @@ PROJECT_NAME = "BitShares-Core"
# could be handy for archiving the generated documentation or if some version
# control system is used.

PROJECT_NUMBER = "5.2.1"
PROJECT_NUMBER = "6.0.0"

# Using the PROJECT_BRIEF tag one can provide an optional one line description
# for a project that appears at the top of each page and should give viewer a
Expand Down
2 changes: 1 addition & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -236,7 +236,7 @@ The `cli_wallet` program can also be configured to serve **all of its commands**

Start `cli_wallet` with RPC connection enabled:

$ ./programs/cli_wallet/cli_wallet --rpc-endpoint=127.0.0.8091
$ ./programs/cli_wallet/cli_wallet --rpc-endpoint=127.0.0.1:8091

Access the wallet API using an HTTP client:

Expand Down
2 changes: 1 addition & 1 deletion docs
Submodule docs updated from aa7661 to 961733
1 change: 1 addition & 0 deletions libraries/protocol/asset.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -149,6 +149,7 @@ namespace graphene { namespace protocol {
{
uint128_t num = ocp.numerator();
uint128_t den = ocp.denominator();
FC_ASSERT( num > 0 && den > 0, "Internal error" );
if( num > den )
{
num /= den;
Expand Down
15 changes: 9 additions & 6 deletions libraries/protocol/include/graphene/protocol/types.hpp
Original file line number Diff line number Diff line change
Expand Up @@ -174,15 +174,18 @@ enum asset_issuer_permission_flags {
/// @note These parameters are for issuer permission only.
/// For each parameter, if it is set in issuer permission,
/// it means the bitasset owner can not update the corresponding parameter.
/// In this case, if the value of the parameter was set by the bitasset owner, it can not be updated;
/// if no value was set by the owner, the value can still be updated by the feed producers.
///@{
disable_mcr_update = 0x800, ///< the bitasset owner can not update MCR, permisison only
disable_icr_update = 0x1000, ///< the bitasset owner can not update ICR, permisison only
disable_mssr_update = 0x2000, ///< the bitasset owner can not update MSSR, permisison only
/// @note For each one of these parameters, if it is set in issuer permission, and
/// * if the value of the parameter was set by the bitasset owner, it can not be updated,
/// * if no value was set by the owner, the value can still be updated by the feed producers.
///@{
disable_mcr_update = 0x800, ///< the bitasset owner can not update MCR, permission only
disable_icr_update = 0x1000, ///< the bitasset owner can not update ICR, permission only
disable_mssr_update = 0x2000, ///< the bitasset owner can not update MSSR, permission only
///@}
disable_bsrm_update = 0x4000, ///< the bitasset owner can not update BSRM, permission only
disable_collateral_bidding = 0x8000 ///< Can not bid collateral after a global settlement
///@}
disable_collateral_bidding = 0x8000 ///< Can not bid collateral after a global settlement
///@}
};

Expand Down

0 comments on commit e6e687a

Please sign in to comment.