Skip to content

Commit

Permalink
missed the news
Browse files Browse the repository at this point in the history
  • Loading branch information
coderboo committed Sep 22, 2014
1 parent b673108 commit 219da4b
Show file tree
Hide file tree
Showing 3 changed files with 3 additions and 0 deletions.
1 change: 1 addition & 0 deletions src/alias.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -2084,6 +2084,7 @@ Value getaliasfees(const Array& params, bool fHelp) {
Object oRes;
oRes.push_back(Pair("height", nBestHeight ));
oRes.push_back(Pair("subsidy", ValueFromAmount(GetAliasFeeSubsidy(nBestHeight) )));
oRes.push_back(Pair("new_fee", (double)1.0));
oRes.push_back(Pair("activate_fee", ValueFromAmount(GetAliasNetworkFee(1, nBestHeight) )));
oRes.push_back(Pair("update_fee", ValueFromAmount(GetAliasNetworkFee(2, nBestHeight) )));
return oRes;
Expand Down
1 change: 1 addition & 0 deletions src/cert.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -1409,6 +1409,7 @@ Value getcertfees(const Array& params, bool fHelp) {
Object oRes;
oRes.push_back(Pair("height", nBestHeight ));
oRes.push_back(Pair("subsidy", ValueFromAmount(GetCertFeeSubsidy(nBestHeight) )));
oRes.push_back(Pair("new_fee", (double)1.0));
oRes.push_back(Pair("activate_fee", ValueFromAmount(GetCertNetworkFee(1, nBestHeight) )));
oRes.push_back(Pair("cert_fee", ValueFromAmount(GetCertNetworkFee(2, nBestHeight) )));
oRes.push_back(Pair("transfer_fee", ValueFromAmount(GetCertNetworkFee(3, nBestHeight) )));
Expand Down
1 change: 1 addition & 0 deletions src/offer.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -1440,6 +1440,7 @@ Value getofferfees(const Array& params, bool fHelp) {
Object oRes;
oRes.push_back(Pair("height", nBestHeight ));
oRes.push_back(Pair("subsidy", ValueFromAmount(GetOfferFeeSubsidy(nBestHeight) )));
oRes.push_back(Pair("new_fee", (double)1.0));
oRes.push_back(Pair("activate_fee", ValueFromAmount(GetOfferNetworkFee(1, nBestHeight) )));
oRes.push_back(Pair("update_fee", ValueFromAmount(GetOfferNetworkFee(2, nBestHeight) )));
oRes.push_back(Pair("pay_fee", ValueFromAmount(GetOfferNetworkFee(3, nBestHeight) )));
Expand Down

0 comments on commit 219da4b

Please sign in to comment.