mirror of
https://github.com/ethereum/go-ethereum.git
synced 2026-08-20 10:52:25 +00:00
add comments
This commit is contained in:
parent
aaf3bb5e9e
commit
75dcdbc2b8
1 changed files with 9 additions and 1 deletions
|
|
@ -23,6 +23,7 @@ import (
|
||||||
|
|
||||||
"github.com/eth4nos/go-ethereum/common"
|
"github.com/eth4nos/go-ethereum/common"
|
||||||
"github.com/eth4nos/go-ethereum/crypto"
|
"github.com/eth4nos/go-ethereum/crypto"
|
||||||
|
"github.com/eth4nos/go-ethereum/log"
|
||||||
"github.com/eth4nos/go-ethereum/params"
|
"github.com/eth4nos/go-ethereum/params"
|
||||||
)
|
)
|
||||||
|
|
||||||
|
|
@ -224,13 +225,16 @@ func (evm *EVM) Call(caller ContractRef, addr common.Address, input []byte, gas
|
||||||
// old version (jmlee)
|
// old version (jmlee)
|
||||||
//evm.Transfer(evm.StateDB, caller.Address(), to.Address(), value)
|
//evm.Transfer(evm.StateDB, caller.Address(), to.Address(), value)
|
||||||
// new version (jmlee)
|
// new version (jmlee)
|
||||||
if addr == common.HexToAddress("0x1111111111111111111111111111111111111111") {
|
if addr == common.HexToAddress("0x0123456789012345678901234567890123456789") {
|
||||||
// restoration tx
|
// restoration tx
|
||||||
inactiveAddr := common.HexToAddress("0x12345") // temp value for test
|
inactiveAddr := common.HexToAddress("0x12345") // temp value for test
|
||||||
amount := big.NewInt(12345) // temp value for test
|
amount := big.NewInt(12345) // temp value for test
|
||||||
|
|
||||||
evm.StateDB.CreateAccount(inactiveAddr) // get inactive account to state trie
|
evm.StateDB.CreateAccount(inactiveAddr) // get inactive account to state trie
|
||||||
evm.Restore(evm.StateDB, inactiveAddr, amount) // restore balance
|
evm.Restore(evm.StateDB, inactiveAddr, amount) // restore balance
|
||||||
|
|
||||||
|
// delete input field (merkle proofs) to look like a normal value transfer tx (maybe optional)
|
||||||
|
//input = []byte{}
|
||||||
} else {
|
} else {
|
||||||
// value transfer tx
|
// value transfer tx
|
||||||
evm.Transfer(evm.StateDB, caller.Address(), to.Address(), value)
|
evm.Transfer(evm.StateDB, caller.Address(), to.Address(), value)
|
||||||
|
|
@ -263,6 +267,10 @@ func (evm *EVM) Call(caller ContractRef, addr common.Address, input []byte, gas
|
||||||
contract.UseGas(contract.Gas)
|
contract.UseGas(contract.Gas)
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
|
if err == nil {
|
||||||
|
log.Info("### at evm.Call(): no error occured") // (jmlee)
|
||||||
|
}
|
||||||
return ret, contract.Gas, err
|
return ret, contract.Gas, err
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
|
||||||
Loading…
Reference in a new issue