我创建了一个 AccountManager 智能合约和它的两个实例(PARTYA 和 PARTYB)。当调用 TransferAgent.transfer(AccountManager.address, AccountManager.address) 我可以看到 accounts[msg.sender].balance 更新如预期。但是,当调用实例(PARTYA 和 PARTYB)时,例如 TransferAgent.transfer(PARTYA.address, PARTYB.address),余额中没有任何变化。
我花了一些时间研究如何使用地址从 TransferAgent (外部合同)调用 AccountManager (实例),但找不到任何具体的东西。我无法平衡以反映变化。有什么建议么?
环境 - 以太坊 - 启动框架 - Solidity
我的设置如下
合同.json
{
"default": {
"gas": "auto",
"contracts": {
"SimpleStorage": {
"args": [
100
]
},
"Agent" : {
"args": [
]
},
"AccountManager" : {
"args": [
]
},
"PARTYA" : {
"instanceOf" : "AccountManager",
"args" : [
]
},
"PARTYB" : {
"instanceOf" : "AccountManager",
"args" : [
]
},
"TransferAgent" : {
"args": [
]
}
}
}
}
代理.sol
pragma solidity ^0.4.0;
contract Agent {
/* Define variable owner of the type address*/
address owner;
/* this function is executed at initialization and sets the owner of the contract */
function Agent() { owner = msg.sender; }
/* Function to recover the funds on the contract */
function kill() { if (msg.sender == owner) selfdestruct(owner); }
}
contract AccountManager is Agent {
enum ACTIVE { Y, N }
enum STATUS { CREDIT, DEBIT }
mapping (address => Account) public accounts;
struct Account {
bytes32 ssn;
int balance;
ACTIVE active;
STATUS status;
}
modifier withdrawValidation(int withdrawAmt) {
if( withdrawAmt <= accounts[msg.sender].balance) {
throw;
}
_;
}
// Check for current account matching
modifier transferValidation(address _from, address _to, bytes32 _ssn) {
if( AccountManager(_from).getSSN() != _ssn ||
AccountManager(_to).getSSN() != _ssn ||
AccountManager(_from).getStatus() == STATUS.CREDIT ) {
throw;
}
_;
}
function register(bytes32 _ssn) public returns (bool success) {
Account memory newRegistree;
newRegistree.ssn = _ssn;
newRegistree.balance = 0;
newRegistree.active = ACTIVE.Y;
newRegistree.status = STATUS.DEBIT;
accounts[msg.sender] = newRegistree;
return true;
}
function update(bytes32 _ssn) public returns (bool success) {
accounts[msg.sender].ssn = _ssn;
return true;
}
function deposit(int _depositAmt) public returns(bool success) {
accounts[msg.sender].balance += _depositAmt;
return true;
}
function withdraw(int _withdrawAmt) public returns(bool success) {
accounts[msg.sender].balance = (accounts[msg.sender].balance - _withdrawAmt);
return true;
}
function getBalance() public constant returns(int balance) {
return accounts[msg.sender].balance;
}
function setBalance(int _balance) external returns(bool success) {
accounts[msg.sender].balance = _balance;
return true;
}
function setStatus() internal {
if(accounts[msg.sender].balance >= 0)
accounts[msg.sender].status = STATUS.DEBIT;
else
accounts[msg.sender].status = STATUS.CREDIT;
}
function getStatus() external constant returns (STATUS status) {
return accounts[msg.sender].status;
}
function getSSN() external constant returns(bytes32 ssn) {
return accounts[msg.sender].ssn;
}
function getAccount() public constant returns (bytes32 ssn, int balance, ACTIVE active, STATUS status) {
return (accounts[msg.sender].ssn, accounts[msg.sender].balance, accounts[msg.sender].active, accounts[msg.sender].status);
}
}
contract TransferAgent is Agent {
function transfer(address _from, address _to) public returns (bool success) {
AccountManager(_from).setBalance(100); // not working for instances PARTYA,PARTYB
AccountManager(_to).setBalance(200); // not working for instances PARTYA,PARTYB }
}