forked from cerc-io/plugeth
core: add BlockGen.GetBalance method (#22589)
This commit is contained in:
parent
76700ac892
commit
b6912c1047
@ -111,6 +111,11 @@ func (b *BlockGen) AddTxWithChain(bc *BlockChain, tx *types.Transaction) {
|
|||||||
b.receipts = append(b.receipts, receipt)
|
b.receipts = append(b.receipts, receipt)
|
||||||
}
|
}
|
||||||
|
|
||||||
|
// GetBalance returns the balance of the given address at the generated block.
|
||||||
|
func (b *BlockGen) GetBalance(addr common.Address) *big.Int {
|
||||||
|
return b.statedb.GetBalance(addr)
|
||||||
|
}
|
||||||
|
|
||||||
// AddUncheckedTx forcefully adds a transaction to the block without any
|
// AddUncheckedTx forcefully adds a transaction to the block without any
|
||||||
// validation.
|
// validation.
|
||||||
//
|
//
|
||||||
|
Loading…
Reference in New Issue
Block a user