ABI break: Remove blktemplate_t.{min,max}nonce, since it was never supported and is unlikely to ever be useful

This commit is contained in:
Luke Dashjr
2016-08-11 09:12:35 +00:00
parent f692fddffa
commit 3280aab174
2 changed files with 0 additions and 3 deletions

View File

@@ -88,7 +88,6 @@ blktemplate_t *blktmpl_create() {
tmpl->maxtime = 0xffffffff;
tmpl->maxtimeoff = 0x7fff;
tmpl->mintimeoff = -0x7fff;
tmpl->maxnonce = 0xffffffff;
tmpl->expires = 0x7fff;
return tmpl;

View File

@@ -134,8 +134,6 @@ typedef struct {
blktime_diff_t maxtimeoff;
blktime_t mintime;
blktime_diff_t mintimeoff;
blknonce_t minnonce;
blknonce_t maxnonce;
// TEMPORARY HACK
libblkmaker_hash_t *_mrklbranch;