Welcome to OStack Knowledge Sharing Community for programmer and developer-Open, Learning and Share
Welcome To Ask or Share your Answers For Others

Categories

0 votes
957 views
in Technique[技术] by (71.8m points)

ethereum - Do not enter function if address is contract , owner and set address

I dont want to enter function when one of those addresses i mean contract owner , contract itself or set address1 is equal to from

 if (from != address1 && from != address(this) && from != owner )
                
             {
    
            
        }

And in remix i try this code and even when form is equal to owner it jump in function i think i made some logical mistake:) ..is it possible remix debugger is entering line by line because when i checked wihtout debugger it seems to work values are ok code is not entering function why remix does so?

question from:https://stackoverflow.com/questions/65909747/do-not-enter-function-if-address-is-contract-owner-and-set-address

与恶龙缠斗过久,自身亦成为恶龙;凝视深渊过久,深渊将回以凝视…
Welcome To Ask or Share your Answers For Others

1 Answer

0 votes
by (71.8m points)
Waitting for answers

与恶龙缠斗过久,自身亦成为恶龙;凝视深渊过久,深渊将回以凝视…
Welcome to OStack Knowledge Sharing Community for programmer and developer-Open, Learning and Share
Click Here to Ask a Question

...