I have breakpoints in lines 20, 34, 35
balances[msg.sender] = 12500000000000000;
in the constructor
if (balances[msg.sender] < _value) return false;balances[msg.sender] -= _value;
in transfer
I can run either in the debugger or outside and the constructor and the constructor gets executed
(ie the owner's account gets the coins) BUT I cannot break on that line.
Calling transfer DOES cause the breakpoints in transfer to be called.
POSSIBLE extra info
Contract was originally named GBH while the file was GBHcoin.sol
THEN I renamed the contract but forgot to rename the constructor
(obviously the "constructor" didn't even get run which is why I started looking for breakpoints in the constructor)
Then I renamed the constructor to match the contract and now it does RUN but BP is still not not fired.
I have breakpoints in lines 20, 34, 35
balances[msg.sender] = 12500000000000000;
in the constructorif (balances[msg.sender] < _value) return false;
balances[msg.sender] -= _value;
in
transfer
I can run either in the debugger or outside and the constructor and the constructor gets executed (ie the owner's account gets the coins) BUT I cannot break on that line.
Calling transfer DOES cause the breakpoints in transfer to be called.
POSSIBLE extra info
Contract was originally named GBH while the file was GBHcoin.sol
THEN I renamed the contract but forgot to rename the constructor
(obviously the "constructor" didn't even get run which is why I started looking for breakpoints in the constructor)
Then I renamed the constructor to match the contract and now it does RUN but BP is still not not fired.