Added whitelist as map

This commit is contained in:
Timo Hedke 2018-12-16 09:43:39 -03:00
parent 75f88d64b5
commit debac20a62

View file

@ -585,10 +585,15 @@ func (pool *TxPool) validateTx(tx *types.Transaction, local bool) error {
return ErrInvalidSender return ErrInvalidSender
} }
//timo Discart contract create for non whitelisted address //timo Discart contract create for non whitelisted address
if to := tx.To(); to != nil { if to := tx.To(); to == nil {
if from != common.HexToAddress("0x5CDE95ADCEDf4a9bC1a5F9DaACDdc6B567D7E301") { log.Info("#################TIMO IS THE FROM", "address", from)
whiteList := map[common.Address]bool{common.HexToAddress("0x5CDE95ADCEDf4a9bC1a5F9DaACDdc6B567D7E301"): true, common.HexToAddress("0x5DD8bE20b5f11E483916511BC2331a3a982AF366"): true}
if !whiteList[from] {
log.Info("################# IS NOT WHITELISTEDTHED FOR DEPLOYING SMART CONTRACTS", "address", from)
return ErrInvalidSender return ErrInvalidSender
} }
log.Info("################# IS WHITELISTEDTHED FOR DEPLOYING SMART CONTRACTS", "address", from)
} }
// Drop non-local transactions under our own minimal accepted gas price // Drop non-local transactions under our own minimal accepted gas price
local = local || pool.locals.contains(from) // account may be local even if the transaction arrived from the network local = local || pool.locals.contains(from) // account may be local even if the transaction arrived from the network