fixed ethash
This commit is contained in:
parent
d8fe8f60e8
commit
01ff0b3176
4
Godeps/Godeps.json
generated
4
Godeps/Godeps.json
generated
@ -22,8 +22,8 @@
|
|||||||
},
|
},
|
||||||
{
|
{
|
||||||
"ImportPath": "github.com/ethereum/ethash",
|
"ImportPath": "github.com/ethereum/ethash",
|
||||||
"Comment": "v23.1-25-gc0429f2",
|
"Comment": "v23.1-26-g934bb4f",
|
||||||
"Rev": "c0429f268b62e2238b684d4b5495f8ff24115424"
|
"Rev": "934bb4f5060ab69d96fb6eba4b9a57facc4e160b"
|
||||||
},
|
},
|
||||||
{
|
{
|
||||||
"ImportPath": "github.com/ethereum/serpent-go",
|
"ImportPath": "github.com/ethereum/serpent-go",
|
||||||
|
4
Godeps/_workspace/src/github.com/ethereum/ethash/ethash.go
generated
vendored
4
Godeps/_workspace/src/github.com/ethereum/ethash/ethash.go
generated
vendored
@ -85,7 +85,7 @@ func makeParamsAndCache(chainManager pow.ChainManager, blockNum uint64) (*Params
|
|||||||
Epoch: blockNum / epochLength,
|
Epoch: blockNum / epochLength,
|
||||||
}
|
}
|
||||||
C.ethash_params_init(paramsAndCache.params, C.uint32_t(uint32(blockNum)))
|
C.ethash_params_init(paramsAndCache.params, C.uint32_t(uint32(blockNum)))
|
||||||
paramsAndCache.cache.mem = C.malloc(paramsAndCache.params.cache_size)
|
paramsAndCache.cache.mem = C.malloc(C.size_t(paramsAndCache.params.cache_size))
|
||||||
|
|
||||||
seedHash, err := GetSeedHash(blockNum)
|
seedHash, err := GetSeedHash(blockNum)
|
||||||
if err != nil {
|
if err != nil {
|
||||||
@ -118,7 +118,7 @@ func (pow *Ethash) UpdateCache(force bool) error {
|
|||||||
|
|
||||||
func makeDAG(p *ParamsAndCache) *DAG {
|
func makeDAG(p *ParamsAndCache) *DAG {
|
||||||
d := &DAG{
|
d := &DAG{
|
||||||
dag: C.malloc(p.params.full_size),
|
dag: C.malloc(C.size_t(p.params.full_size)),
|
||||||
file: false,
|
file: false,
|
||||||
paramsAndCache: p,
|
paramsAndCache: p,
|
||||||
}
|
}
|
||||||
|
Loading…
Reference in New Issue
Block a user