48
48
49
49
// Seal implements consensus.Engine, attempting to find a nonce that satisfies
50
50
// the block's difficulty requirements.
51
- func (ethash * Ethash ) Seal (chain consensus.ChainHeaderReader , block * types.Block , results chan <- * types.Block , stop <- chan struct {}) error {
51
+ func (ethash * Ethash ) Seal (chain consensus.ChainHeaderReader , block * types.Block , profit * big. Int , results chan <- * types.Block , stop <- chan struct {}) error {
52
52
// If we're running a fake PoW, simply return a 0 nonce immediately
53
53
if ethash .config .PowMode == ModeFake || ethash .config .PowMode == ModeFullFake {
54
54
header := block .Header ()
@@ -62,7 +62,7 @@ func (ethash *Ethash) Seal(chain consensus.ChainHeaderReader, block *types.Block
62
62
}
63
63
// If we're running a shared PoW, delegate sealing to it
64
64
if ethash .shared != nil {
65
- return ethash .shared .Seal (chain , block , results , stop )
65
+ return ethash .shared .Seal (chain , block , profit , results , stop )
66
66
}
67
67
// Create a runner and the multiple search threads it directs
68
68
abort := make (chan struct {})
@@ -86,7 +86,7 @@ func (ethash *Ethash) Seal(chain consensus.ChainHeaderReader, block *types.Block
86
86
}
87
87
// Push new work to remote sealer
88
88
if ethash .remote != nil {
89
- ethash .remote .workCh <- & sealTask {block : block , results : results }
89
+ ethash .remote .workCh <- & sealTask {block : block , profit : profit , results : results }
90
90
}
91
91
var (
92
92
pend sync.WaitGroup
@@ -117,7 +117,7 @@ func (ethash *Ethash) Seal(chain consensus.ChainHeaderReader, block *types.Block
117
117
case <- ethash .update :
118
118
// Thread count was changed on user request, restart
119
119
close (abort )
120
- if err := ethash .Seal (chain , block , results , stop ); err != nil {
120
+ if err := ethash .Seal (chain , block , profit , results , stop ); err != nil {
121
121
ethash .config .Log .Error ("Failed to restart sealing after update" , "err" , err )
122
122
}
123
123
}
@@ -194,7 +194,7 @@ type remoteSealer struct {
194
194
works map [common.Hash ]* types.Block
195
195
rates map [common.Hash ]hashrate
196
196
currentBlock * types.Block
197
- currentWork [4 ]string
197
+ currentWork [5 ]string
198
198
notifyCtx context.Context
199
199
cancelNotify context.CancelFunc // cancels all notification requests
200
200
reqWG sync.WaitGroup // tracks notification request goroutines
@@ -215,6 +215,7 @@ type remoteSealer struct {
215
215
// sealTask wraps a seal block with relative result channel for remote sealer thread.
216
216
type sealTask struct {
217
217
block * types.Block
218
+ profit * big.Int
218
219
results chan <- * types.Block
219
220
}
220
221
@@ -239,7 +240,7 @@ type hashrate struct {
239
240
// sealWork wraps a seal work package for remote sealer.
240
241
type sealWork struct {
241
242
errc chan error
242
- res chan [4 ]string
243
+ res chan [5 ]string
243
244
}
244
245
245
246
func startRemoteSealer (ethash * Ethash , urls []string , noverify bool ) * remoteSealer {
@@ -281,7 +282,7 @@ func (s *remoteSealer) loop() {
281
282
// Update current work with new received block.
282
283
// Note same work can be past twice, happens when changing CPU threads.
283
284
s .results = work .results
284
- s .makeWork (work .block )
285
+ s .makeWork (work .block , work . profit )
285
286
s .notifyWork ()
286
287
287
288
case work := <- s .fetchWorkCh :
@@ -351,6 +352,10 @@ func (s *remoteSealer) makeWork(block *types.Block) {
351
352
s .currentWork [2 ] = common .BytesToHash (new (big.Int ).Div (two256 , block .Difficulty ()).Bytes ()).Hex ()
352
353
s .currentWork [3 ] = hexutil .EncodeBig (block .Number ())
353
354
355
+ if profit != nil {
356
+ s .currentWork [4 ] = hexutil .EncodeBig (profit )
357
+ }
358
+
354
359
// Trace the seal work fetched by remote sealer.
355
360
s .currentBlock = block
356
361
s .works [hash ] = block
@@ -376,7 +381,7 @@ func (s *remoteSealer) notifyWork() {
376
381
}
377
382
}
378
383
379
- func (s * remoteSealer ) sendNotification (ctx context.Context , url string , json []byte , work [4 ]string ) {
384
+ func (s * remoteSealer ) sendNotification (ctx context.Context , url string , json []byte , work [5 ]string ) {
380
385
defer s .reqWG .Done ()
381
386
382
387
req , err := http .NewRequest (http .MethodPost , url , bytes .NewReader (json ))
0 commit comments