forked from cerc-io/plugeth
Switched variable names
This commit is contained in:
parent
6d28bf534f
commit
03e139d23b
@ -284,13 +284,13 @@ func CalculateUncleReward(block *Block) *big.Int {
|
|||||||
func (sm *StateManager) AccumelateRewards(block *Block) error {
|
func (sm *StateManager) AccumelateRewards(block *Block) error {
|
||||||
|
|
||||||
// Get the coinbase rlp data
|
// Get the coinbase rlp data
|
||||||
addr := sm.procState.GetAccount(block.Coinbase)
|
acc := sm.procState.GetAccount(block.Coinbase)
|
||||||
// Reward amount of ether to the coinbase address
|
// Reward amount of ether to the coinbase address
|
||||||
addr.AddFee(CalculateBlockReward(block, len(block.Uncles)))
|
acc.AddFee(CalculateBlockReward(block, len(block.Uncles)))
|
||||||
|
|
||||||
acc := make([]byte, len(block.Coinbase))
|
addr := make([]byte, len(block.Coinbase))
|
||||||
copy(acc, block.Coinbase)
|
copy(addr, block.Coinbase)
|
||||||
sm.procState.UpdateAccount(acc, addr)
|
sm.procState.UpdateAccount(addr, acc)
|
||||||
|
|
||||||
for _, uncle := range block.Uncles {
|
for _, uncle := range block.Uncles {
|
||||||
uncleAddr := sm.procState.GetAccount(uncle.Coinbase)
|
uncleAddr := sm.procState.GetAccount(uncle.Coinbase)
|
||||||
|
Loading…
Reference in New Issue
Block a user