Version 2.4.1
This commit is contained in:
parent
35b4288a33
commit
3c01c36707
5 changed files with 12 additions and 4 deletions
8
NEWS
8
NEWS
|
@ -1,3 +1,11 @@
|
||||||
|
Version 2.4.1 - Feb 25, 2015
|
||||||
|
|
||||||
|
- Add support for scrypt(N, 1, 1)
|
||||||
|
- Add optimized PowerPC code for scrypt and SHA-256d
|
||||||
|
- Allow use of getblocktemplate with merge-mined cryptocurrencies
|
||||||
|
- Automatically switch to getwork if no payout address is provided
|
||||||
|
- Fix CVE-2014-6251
|
||||||
|
|
||||||
Version 2.4 - May 20, 2014
|
Version 2.4 - May 20, 2014
|
||||||
|
|
||||||
- Add support for the getblocktemplate RPC method (BIP 22)
|
- Add support for the getblocktemplate RPC method (BIP 22)
|
||||||
|
|
|
@ -1,4 +1,4 @@
|
||||||
AC_INIT([cpuminer], [2.4])
|
AC_INIT([cpuminer], [2.4.1])
|
||||||
|
|
||||||
AC_PREREQ([2.59c])
|
AC_PREREQ([2.59c])
|
||||||
AC_CANONICAL_SYSTEM
|
AC_CANONICAL_SYSTEM
|
||||||
|
|
|
@ -1,6 +1,6 @@
|
||||||
/*
|
/*
|
||||||
* Copyright 2010 Jeff Garzik
|
* Copyright 2010 Jeff Garzik
|
||||||
* Copyright 2012-2014 pooler
|
* Copyright 2012-2015 pooler
|
||||||
*
|
*
|
||||||
* 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
|
||||||
* under the terms of the GNU General Public License as published by the Free
|
* under the terms of the GNU General Public License as published by the Free
|
||||||
|
|
2
minerd.1
2
minerd.1
|
@ -1,4 +1,4 @@
|
||||||
.TH MINERD 1 "May 2014" "cpuminer 2.4"
|
.TH MINERD 1 "February 2015" "cpuminer 2.4.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-2014 pooler
|
* Copyright 2012-2015 pooler
|
||||||
*
|
*
|
||||||
* 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
|
||||||
* under the terms of the GNU General Public License as published by the Free
|
* under the terms of the GNU General Public License as published by the Free
|
||||||
|
|
Loading…
Reference in a new issue