mirror of
https://github.com/ethereum/solidity
synced 2023-10-03 13:03:40 +00:00
Protocol changes for PoC-5:
Transactions Trie. LTMA for gasPrice. New block header format. Various additional checks. New Genesis block.
This commit is contained in:
parent
78af5c2fc8
commit
da99f2c515
4
vm.cpp
4
vm.cpp
@ -41,8 +41,8 @@ class FakeExtVM: public ExtVMFace
|
|||||||
public:
|
public:
|
||||||
FakeExtVM()
|
FakeExtVM()
|
||||||
{}
|
{}
|
||||||
FakeExtVM(BlockInfo const& _previousBlock, BlockInfo const& _currentBlock, uint _currentNumber):
|
FakeExtVM(BlockInfo const& _previousBlock, BlockInfo const& _currentBlock):
|
||||||
ExtVMFace(Address(), Address(), Address(), 0, 1, bytesConstRef(), bytesConstRef(), _previousBlock, _currentBlock, _currentNumber)
|
ExtVMFace(Address(), Address(), Address(), 0, 1, bytesConstRef(), bytesConstRef(), _previousBlock, _currentBlock)
|
||||||
{}
|
{}
|
||||||
|
|
||||||
u256 store(u256 _n)
|
u256 store(u256 _n)
|
||||||
|
Loading…
Reference in New Issue
Block a user