【发布时间】:2018-01-25 20:57:26
【问题描述】:
Mortgage.new({ from: ownerAccount, gas: defaultGas }).then(
function(loanInstance) {
loanContractAddress = loanInstance.address;
$('#sectionAAddress').html('<i class="fa fa-address-card"></i> ' +
抵押是合约名称
var Mortgage = artifacts.require("./Mortgage.sol");
module.exports = function(deployer) {
deployer.deploy(Mortgage);
};
Mortgage.sol
pragma solidity ^0.4.4;
contract Mortgage {
function Mortgage()
{
loanApplicant = msg.sender;
loan.status = STATUS_INITIATED;
balances[msg.sender] = 100000000;
}
/* address of the loan applicant */
address loanApplicant;
我收到以下 js 错误 界面
Uncaught ReferenceError: Mortgage is not defined 在 deployLoanContract (app.js:22316) 在 HTMLButtonElement。 (app.js:22610) 在 HTMLButtonElement.dispatch (jquery.min.js:3) 在 HTMLButtonElement.r.handle (jquery.min.js:3) deployLoanContract @ app.js:22316 (匿名) @ app.js:22610 dispatch @ jquery.min.js:3 r.handle@jquery.min.js:3
请在下面找到 github url 以检查整个代码 https://github.com/rajivjc/mortgage-blockchain-demo/issues
【问题讨论】:
标签: javascript blockchain ethereum solidity truffle