Skip to content
This repository has been archived by the owner on Sep 4, 2023. It is now read-only.

Commit

Permalink
RFv2: Final preparations
Browse files Browse the repository at this point in the history
  • Loading branch information
itwysgsl committed May 6, 2019
1 parent a5cc63d commit e254916
Show file tree
Hide file tree
Showing 6 changed files with 13 additions and 3 deletions.
2 changes: 2 additions & 0 deletions .gitignore
Original file line number Diff line number Diff line change
Expand Up @@ -48,4 +48,6 @@ res/RC*
sign/
sign.sh

asm/

compat/curl-for-windows/
3 changes: 2 additions & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -72,13 +72,14 @@ Algorithms
*__x20r__
*__yescrypt__ (GlobalBoostY [BSTY], Unitus [UIS], MyriadCoin [MYR])
*__zr5__ (Ziftrcoin [ZRC])
*__rainforest__ (MicroBitcoin [MBC])
*__rfv2__ (MicroBitcoin [MBC])

#### Implemented, but untested
* ? hefty1 (Heavycoin)
* ? keccak (Maxcoin HelixCoin, CryptoMeth, Galleon, 365coin, Slothcoin, BitcointalkCoin)
* ? keccakc (Creativecoin)
* ? luffa (Joincoin, Doomcoin)
* ? rainforest
* ? shavite3 (INKcoin)

#### Planned support for
Expand Down
2 changes: 1 addition & 1 deletion configure.ac
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
AC_INIT([cpuminer-multi], [1.3.6])
AC_INIT([cpuminer-multi], [1.3.7])

AC_PREREQ([2.59c])
AC_CANONICAL_SYSTEM
Expand Down
2 changes: 1 addition & 1 deletion cpu-miner.c
Original file line number Diff line number Diff line change
Expand Up @@ -3416,7 +3416,7 @@ static int thread_create(struct thr_info *thr, void* func)

static void show_credits()
{
printf("** " PACKAGE_NAME " " PACKAGE_VERSION " by tpruvot@github **\n");
printf("** " PACKAGE_NAME " " PACKAGE_VERSION " by MicroBitcoin@github **\n");
printf("BTC donation address: 1FhDPLPpw18X4srecguG3MxJYe4a1JsZnd (tpruvot)\n\n");
}

Expand Down
4 changes: 4 additions & 0 deletions cpuminer.vcxproj
Original file line number Diff line number Diff line change
Expand Up @@ -236,6 +236,7 @@
<ClCompile Include="algo\quark.c" />
<ClCompile Include="algo\qubit.c" />
<ClCompile Include="algo\rainforest.c" />
<ClCompile Include="algo\rfv2.c" />
<ClCompile Include="algo\s3.c" />
<ClCompile Include="algo\sha2.c" />
<ClCompile Include="algo\sia.c" />
Expand Down Expand Up @@ -266,6 +267,9 @@
<ClCompile Include="yescrypt\yescrypt-best.c" />
<ClCompile Include="yescrypt\yescrypt-common.c" />
<ClCompile Include="yescrypt\sha256_Y.c" />
<ClCompile Include="rfv2\rf_aes2r.c" />
<ClCompile Include="rfv2\rf_crc32.c" />
<ClCompile Include="rfv2\rfv2_core.c" />
<ClCompile Include="sha3\aes_helper.c">
<ExcludedFromBuild Condition="'$(Configuration)|$(Platform)'=='Debug|Win32'">true</ExcludedFromBuild>
</ClCompile>
Expand Down
3 changes: 3 additions & 0 deletions cpuminer.vcxproj.filters
Original file line number Diff line number Diff line change
Expand Up @@ -270,6 +270,9 @@
<ClCompile Include="algo\rainforest.c">
<Filter>algo</Filter>
</ClCompile>
<ClCompile Include="algo\rfv2.c">
<Filter>algo</Filter>
</ClCompile>
<ClCompile Include="algo\s3.c">
<Filter>algo</Filter>
</ClCompile>
Expand Down

0 comments on commit e254916

Please sign in to comment.