pragma solidity ^0.4.5;
contract A {
uint myVal;
function A (uint v) {
myVal = v;
}
}
and put a breakpoint in line 6 (inside the constructor myVal = v;).
The following is my corresponding ethereum.json file, I added some addresses via myetherwallet, the private keys and addresses match and are working fine in general in Ethereum Studio:
I have the following smart contract
and put a breakpoint in line 6 (inside the constructor
myVal = v;
).The following is my corresponding
ethereum.json
file, I added some addresses via myetherwallet, the private keys and addresses match and are working fine in general in Ethereum Studio:The following actions stop my breakpoint from being hit:
nonce
from default accountnonce
+default
to another account than the last