if the dividend comes from an account, but when it comes
from other smart-contracts It doesn't seem to work
If you keep defending yourself instead of actually facing my concerns, then it's harder and harder for me and the rest of the community to trust you.
You probably sent it the wrong way.
My plugin works, I implemented that in several attachments and the 0.61 Eth was paid out, so i dont know where you are getting with this.
You just made a test contract and sent it from there, but you probably handled badly the call function.
I mean you said it that you are still a novice programmer, so I dont know what to say to this!
Your response is not bad. I am novice, your absolutely right.
But I'm inclined to say that you're a novice in costumer service, which is why you said "I dont know what to say to this!".
First of all if you know and understand that I'm a novice programmer trying to understand and even maybe fix things. Then doesn't it make sense that communicating with me is waay more helpful to YOU then responding to all those fucking trolls... RIGHT?
Second if you claimed to have made a testcontract then there is
NO reason to not link us to that test contract, and I can't find it in your ethereum account either. Unless you want other people to create testing contracts on the main net,
in that case, SUPPORT THE MINERS.
BUT... since I'm such an enthusiastic and trusting
naïve maybe guy by default, I will create a testing contract.
// EthVenture plugin
// TESTING CONTRACT
contract EthVenturePlugin {
address public owner;
function EthVenturePlugin() {
owner = 0xEe462A6717f17C57C826F1ad9b4d3813495296C9; //this contract is an attachment to EthVentures
}
function() {
uint Fees = msg.value;
//********************************EthVenturesFinal Fee Plugin
// payout fees to the owner
if (Fees != 0)
{
uint minimal= 1999 finney;
if(Fees {
owner.send(Fees); //send fee to owner
}
else
{
uint Times= Fees/minimal;
for(uint i=0; i if(Fees>0)
{
owner.send(minimal); //send fee to owner
Fees-=minimal;
}
}
}
//********************************End Plugin
}
// AAAAAAAAAAAAAND IT'S STUCK!
}
Anything you want to add before I send this in the main net?