Version 2.5.1
This commit is contained in:
parent
af2501c2c7
commit
8da0556cec
5 changed files with 8 additions and 4 deletions
4
NEWS
4
NEWS
|
@ -1,3 +1,7 @@
|
||||||
|
Version 2.5.1 - Jun 25, 2020
|
||||||
|
|
||||||
|
- Add support for bech32 addresses (BIP 173)
|
||||||
|
|
||||||
Version 2.5.0 - Jun 22, 2017
|
Version 2.5.0 - Jun 22, 2017
|
||||||
|
|
||||||
- Add Segwit support
|
- Add Segwit support
|
||||||
|
|
2
README
2
README
|
@ -14,7 +14,7 @@ Dependencies:
|
||||||
Basic *nix build instructions:
|
Basic *nix build instructions:
|
||||||
./autogen.sh # only needed if building from git repo
|
./autogen.sh # only needed if building from git repo
|
||||||
./nomacro.pl # in case the assembler doesn't support macros
|
./nomacro.pl # in case the assembler doesn't support macros
|
||||||
./configure CFLAGS="-O3" # Make sure -O3 is an O and not a zero!
|
./configure CFLAGS="-O3" # make sure -O3 is an O and not a zero!
|
||||||
make
|
make
|
||||||
|
|
||||||
Notes for AIX users:
|
Notes for AIX users:
|
||||||
|
|
|
@ -1,4 +1,4 @@
|
||||||
AC_INIT([cpuminer], [2.5.0])
|
AC_INIT([cpuminer], [2.5.1])
|
||||||
|
|
||||||
AC_PREREQ([2.59c])
|
AC_PREREQ([2.59c])
|
||||||
AC_CANONICAL_SYSTEM
|
AC_CANONICAL_SYSTEM
|
||||||
|
|
2
minerd.1
2
minerd.1
|
@ -1,4 +1,4 @@
|
||||||
.TH MINERD 1 "June 2017" "cpuminer 2.5.0"
|
.TH MINERD 1 "June 2020" "cpuminer 2.5.1"
|
||||||
.SH NAME
|
.SH NAME
|
||||||
minerd \- CPU miner for Bitcoin and Litecoin
|
minerd \- CPU miner for Bitcoin and Litecoin
|
||||||
.SH SYNOPSIS
|
.SH SYNOPSIS
|
||||||
|
|
2
util.c
2
util.c
|
@ -1,7 +1,7 @@
|
||||||
/*
|
/*
|
||||||
* Copyright 2010 Jeff Garzik
|
* Copyright 2010 Jeff Garzik
|
||||||
* Copyright 2012 Luke Dashjr
|
* Copyright 2012 Luke Dashjr
|
||||||
* Copyright 2012-2017 pooler
|
* Copyright 2012-2020 pooler
|
||||||
* Copyright 2017 Pieter Wuille
|
* Copyright 2017 Pieter Wuille
|
||||||
*
|
*
|
||||||
* This program is free software; you can redistribute it and/or modify it
|
* This program is free software; you can redistribute it and/or modify it
|
||||||
|
|
Loading…
Reference in a new issue