1
0
mirror of https://github.com/GOSTSec/poolserver synced 2025-02-11 14:34:15 +00:00

Temporary fix

This commit is contained in:
Intel 2014-05-04 17:05:20 -04:00
parent 4931afd7ed
commit cac65c723b
2 changed files with 2 additions and 2 deletions

View File

@ -54,7 +54,7 @@ namespace Bitcoin
Transaction tx;
tx.version = 1;
tx.time = Util:Date();
tx.time = Util::Date();
tx.in.push_back(txin);
tx.out.push_back(txout);
tx.lockTime = 0;

View File

@ -180,7 +180,7 @@ ByteBuffer& Bitcoin::operator>>(ByteBuffer& a, Block& b)
for (uint64 i = 0; i < txcount; ++i)
a >> b.tx[i];
a >> b.signature;
//a >> b.signature;
return a;
}