d50d579fb5
* Moved oracle/e2e to oracle-e2e * Update build path in docker-compose * Update link to e2e in oracle * Introduce oracle-e2e workspace. * Updated script and readme * Integrated oracle-e2e into CI.
14 lines
252 B
JavaScript
14 lines
252 B
JavaScript
function generateNewBlock(web3, address) {
|
|
return web3.eth.sendTransaction({
|
|
from: address,
|
|
to: '0x0000000000000000000000000000000000000000',
|
|
gasPrice: '1',
|
|
gas: '21000',
|
|
value: '1'
|
|
})
|
|
}
|
|
|
|
module.exports = {
|
|
generateNewBlock
|
|
}
|