mirror of
https://github.com/ethereum/go-ethereum.git
synced 2026-05-13 19:46:39 +00:00
Merge pull request #20540 from holiman/verbose_panic
core/state: add more verbosity to panic
This commit is contained in:
commit
b5c4ea56b8
1 changed files with 1 additions and 1 deletions
|
|
@ -204,7 +204,7 @@ func (s *StateDB) AddRefund(gas uint64) {
|
||||||
func (s *StateDB) SubRefund(gas uint64) {
|
func (s *StateDB) SubRefund(gas uint64) {
|
||||||
s.journal.append(refundChange{prev: s.refund})
|
s.journal.append(refundChange{prev: s.refund})
|
||||||
if gas > s.refund {
|
if gas > s.refund {
|
||||||
panic("Refund counter below zero")
|
panic(fmt.Sprintf("Refund counter below zero (gas: %d > refund: %d)", gas, s.refund))
|
||||||
}
|
}
|
||||||
s.refund -= gas
|
s.refund -= gas
|
||||||
}
|
}
|
||||||
|
|
|
||||||
Loading…
Reference in a new issue