Files: 32d6817f60330c28d8efbe94308e107d379bb465 / fakeBlockChain.js
301 bytesRaw
1 | const utils = require('ethereumjs-util') |
2 | const U256 = require('./deps/u256.js') |
3 | |
4 | module.exports = { |
5 | getBlock: (n) => { |
6 | const hash = utils.sha3(new Buffer(utils.bufferToInt(n).toString())) |
7 | const block = { |
8 | hash: () => { |
9 | return new U256(hash) |
10 | } |
11 | } |
12 | return block |
13 | } |
14 | } |
15 |
Built with git-ssb-web