Browse Source

fixed example

cl-refactor
Marek Kotewicz 10 years ago
parent
commit
f9cc090473
  1. 2
      example/contract.html

2
example/contract.html

@ -50,7 +50,7 @@
function callExampleContract() {
// this should be generated by ethereum
var param = document.getElementById('value').value;
var param = parseInt(document.getElementById('value').value);
// call the contract
contract.multiply(param).call().then(function(res) {

Loading…
Cancel
Save