From 6da08c4e4a69cfd1fe9d55d2e019d878f26092a1 Mon Sep 17 00:00:00 2001 From: CryptoManiac Date: Tue, 11 Feb 2014 02:28:23 +0400 Subject: [PATCH] Add timestamp offset for block header --- p2pool/work.py | 2 +- 1 files changed, 1 insertions(+), 1 deletions(-) diff --git a/p2pool/work.py b/p2pool/work.py index ee7d7bd..541234f 100644 --- a/p2pool/work.py +++ b/p2pool/work.py @@ -330,7 +330,7 @@ class WorkerBridge(worker_interface.WorkerBridge): merkle_link=merkle_link, coinb1=packed_gentx[:-self.COINBASE_NONCE_LENGTH-4], coinb2=packed_gentx[-4:], - timestamp=self.current_work.value['time'], + timestamp=self.current_work.value['time'] + 100, bits=self.current_work.value['bits'], share_target=target, ) -- 1.7.1