fixed contract example

This commit is contained in:
Marek Kotewicz 2015-01-27 11:53:34 +01:00
parent 649b9cc195
commit f02368141f

View File

@ -52,8 +52,8 @@
var param = parseInt(document.getElementById('value').value);
// call the contract
var res = contract.multiply(param);
document.getElementById('result').innerText = res[0];
var res = contract.call().multiply(param);
document.getElementById('result').innerText = res.toString(10);
}
</script>