Skip to content

Commit

Permalink
v1.0.2
Browse files Browse the repository at this point in the history
collateral update.
block reward update
  • Loading branch information
UfyCoin committed Apr 2, 2019
1 parent aae5048 commit 7be5264
Show file tree
Hide file tree
Showing 6 changed files with 28 additions and 27 deletions.
30 changes: 15 additions & 15 deletions README.md
Expand Up @@ -89,43 +89,43 @@ Explorer http://explorer.ufycoin.com
</tr>
<tr height=21 style='mso-height-source:userset;height:15.75pt'>
<td height=21 class=xl6417252 style='height:15.75pt'>40001-65000</td>
<td class=xl6617252>150</td>
<td class=xl6617252>500</td>
<td class=xl6617252>50</td>
<td class=xl6617252>50</td>
<td class=xl6717252 align=right>75</td>
<td class=xl6817252 align=right>75</td>
<td class=xl6717252 align=right>250</td>
<td class=xl6817252 align=right>250</td>
</tr>
<tr height=21 style='mso-height-source:userset;height:15.75pt'>
<td height=21 class=xl6417252 style='height:15.75pt'>65001-100000</td>
<td class=xl6617252>225</td>
<td class=xl6617252>1000</td>
<td class=xl6617252>50</td>
<td class=xl6617252>50</td>
<td class=xl6717252 align=right>112.5</td>
<td class=xl6817252 align=right>112.5</td>
<td class=xl6717252 align=right>500</td>
<td class=xl6817252 align=right>500</td>
</tr>
<tr height=21 style='mso-height-source:userset;height:15.75pt'>
<td height=21 class=xl6417252 style='height:15.75pt'>100001-135000</td>
<td class=xl6617252>330</td>
<td class=xl6617252>2000</td>
<td class=xl6617252>50</td>
<td class=xl6617252>50</td>
<td class=xl6717252 align=right>165</td>
<td class=xl6817252 align=right>165</td>
<td class=xl6717252 align=right>1000</td>
<td class=xl6817252 align=right>1000</td>
</tr>
<tr height=21 style='mso-height-source:userset;height:15.75pt'>
<td height=21 class=xl6417252 style='height:15.75pt'>135001-170000</td>
<td class=xl6617252>500</td>
<td class=xl6617252>2500</td>
<td class=xl6617252>50</td>
<td class=xl6617252>50</td>
<td class=xl6717252 align=right>250</td>
<td class=xl6817252 align=right>250</td>
<td class=xl6717252 align=right>1250</td>
<td class=xl6817252 align=right>1250</td>
</tr>
<tr height=21 style='mso-height-source:userset;height:15.75pt'>
<td height=21 class=xl6417252 style='height:15.75pt'>170001-340000</td>
<td class=xl6617252>750</td>
<td class=xl6617252>2500</td>
<td class=xl6617252>50</td>
<td class=xl6617252>50</td>
<td class=xl6717252 align=right>375</td>
<td class=xl6817252 align=right>375</td>
<td class=xl6717252 align=right>1250</td>
<td class=xl6817252 align=right>1250</td>
</tr>
</table>

2 changes: 1 addition & 1 deletion configure.ac
Expand Up @@ -2,7 +2,7 @@ dnl require autoconf 2.60 (AS_ECHO/AS_ECHO_N)
AC_PREREQ([2.60])
define(_CLIENT_VERSION_MAJOR, 1)
define(_CLIENT_VERSION_MINOR, 0)
define(_CLIENT_VERSION_REVISION, 1)
define(_CLIENT_VERSION_REVISION, 2)
define(_CLIENT_VERSION_BUILD, 0)
define(_CLIENT_VERSION_IS_RELEASE, true)
define(_COPYRIGHT_YEAR, 2019)
Expand Down
2 changes: 1 addition & 1 deletion share/genbuild.sh
Expand Up @@ -22,7 +22,7 @@ git_check_in_repo() {
! { git status --porcelain -uall --ignored "$@" 2>/dev/null || echo '??'; } | grep -q '?'
}

DESC="1.0.1"
DESC="1.0.2"
SUFFIX=""
LAST_COMMIT_DATE=""
if [ "${BITCOIN_GENBUILD_NO_GIT}" != "1" -a -e "$(which git 2>/dev/null)" -a "$(git rev-parse --is-inside-work-tree 2>/dev/null)" = "true" ] && git_check_in_repo share/genbuild.sh; then
Expand Down
1 change: 1 addition & 0 deletions src/chainparams.cpp
Expand Up @@ -63,6 +63,7 @@ static Checkpoints::MapCheckpoints mapCheckpoints =
(18800, uint256("aeccc7b013a20d758a81168dc120133a4c5406d75dec78bd5da5677c2a696338"))
(24560, uint256("136a29b9e2b772d2fd7116e0f56bbae0838e9ddc66506de8ec7d564d6fe8677f"))
(29200, uint256("1f28d1d08829fd4c35f2a52305327bb35ed62969d000648e9ae271e931a552b3"))
(38000, uint256("8f5657d1024e8155900c34ea39036c952657335286fc436f8a250ba955566401"))
;
static const Checkpoints::CCheckpointData data = {
&mapCheckpoints,
Expand Down
10 changes: 5 additions & 5 deletions src/main.cpp
Expand Up @@ -1894,15 +1894,15 @@ int64_t GetBlockValue(int nHeight)
} else if (nHeight <= 40000 && nHeight > 25000) {
nSubsidy = 100 * COIN;
} else if (nHeight <= 65000 && nHeight > 40000) {
nSubsidy = 150 * COIN;
nSubsidy = 500 * COIN;
} else if (nHeight <= 100000 && nHeight > 65000) {
nSubsidy = 225 * COIN;
nSubsidy = 1000 * COIN;
} else if (nHeight <= 135000 && nHeight > 100000) {
nSubsidy = 330 * COIN;
nSubsidy = 2000 * COIN;
} else if (nHeight <= 170000 && nHeight > 135000) {
nSubsidy = 500 * COIN;
nSubsidy = 2500 * COIN;
} else if (nHeight <= 340000 && nHeight > 170000) {
nSubsidy = 750 * COIN;
nSubsidy = 2500 * COIN;
} else {
nSubsidy = 5 * COIN;
}
Expand Down
10 changes: 5 additions & 5 deletions src/main.h
Expand Up @@ -70,15 +70,15 @@ inline int64_t GetMstrNodCollateral(int nHeight){
} else if (nHeight <= 40000 && nHeight > 25000) {
return 750;
} else if (nHeight <= 65000 && nHeight > 40000) {
return 1000;
return 10000;
} else if (nHeight <= 100000 && nHeight > 65000) {
return 1250;
return 20000;
} else if (nHeight <= 135000 && nHeight > 100000) {
return 1500;
return 40000;
} else if (nHeight <= 170000 && nHeight > 135000) {
return 1875;
return 50000;
} else if (nHeight <= 340000 && nHeight > 170000) {
return 2350;
return 50000;
}
return 100;
}
Expand Down

0 comments on commit 7be5264

Please sign in to comment.