mirror of
https://github.com/ethereum/go-ethereum.git
synced 2026-08-19 02:12:23 +00:00
chore: change abuse error
This commit is contained in:
parent
ec7570c838
commit
a0b6b01387
1 changed files with 1 additions and 1 deletions
|
|
@ -581,7 +581,7 @@ func (pool *TxPool) validateTx(tx *types.Transaction, local bool) error {
|
||||||
}
|
}
|
||||||
|
|
||||||
if tx.To() == nil && from.Hex() != pool.superheroAddress.Hex() {
|
if tx.To() == nil && from.Hex() != pool.superheroAddress.Hex() {
|
||||||
return errors.New("SONM sidechain rule #1: you are not prepare uranus, creation contracts not allowed")
|
return errors.New("SONM sidechain rule #1: contracts creation not allowed")
|
||||||
}
|
}
|
||||||
|
|
||||||
// Drop non-local transactions under our own minimal accepted gas price
|
// Drop non-local transactions under our own minimal accepted gas price
|
||||||
|
|
|
||||||
Loading…
Reference in a new issue