Questions tagged [internal-transactions]
121 questions
4
votes
2 answers
cannot call internal function via `call`
I have a simple test contract:
pragma solidity ^0.4.8;
contract Test {
uint public myVal;
function callIt() {
this.call.gas(50000)(bytes4(sha3("setMyVal(uint256)")), 123);
}
function setMyVal(uint _newVal) internal {
myVal =…
SCBuergel
- 8,774
- 7
- 38
- 69
2
votes
2 answers
New Developer - Should I default as many functions as possible to private or internal?
Would it be good practice to make as many functions as possible private or internal?
With a lot of the recent hacks it seems to be the hackers are getting in through calling functions in unexpected, roundabout ways that isn't always clear to the…
dave kajpust
- 441
- 3
- 8
1
vote
0 answers
How can I retrieve the internal transaction of transfer ether by contract invoke?
I want to retrieve the internal transactions of specified tx, the result should be same as "https://api-ropsten.etherscan.io/api?module=account&action=txlistinternal" api request reuslt.
So I want to know how to do it. There are anyone can give me…
saiwaixiaowangzi
- 121
- 3
1
vote
0 answers
How do I spend ether from an internal transaction?
Both etherscan.io and metamask report that the balance of my ethereum wallet does not include the value of any internal transactions. That being the case, how do I "spend" (or send ether) from an internal transaction?
Duane J
- 111
- 1
0
votes
0 answers
How long does it take to receive funds that show in internal transactions
When I send a transaction and it shows in Internal txns, how long do I take to receive the funds in the wallet I sent it to?
0
votes
0 answers
how many internal transaction can be processed?
I want to transfer ETH to all recipients from recipient contract like below.
What is the limit of 'total'? for average.
How much gas for one internal transaction? Is it 500?
If 500 is right, 16,000 internal transactions can be processed?
(gas…
Leo Moon
- 1
- 1
0
votes
1 answer
my ETH stuck in "internal transaction"
I withdrew .22370372 eth from bitstamp to my ledger wallet and the transaction is appearing in "internal transaction". My address is: 0x3088C856fc2DF62839bA8E81d81026D3a36c01a5
What can I do to have these funds appear in my wallet? They have never…
Arnaud Hightower
- 1
- 1
0
votes
1 answer
How to get money out of a smart contract
I need some help unterstanding how to communicate with a smart contract.
Here is my story:
I gambled 0.2 eth on idice.io
I actually won another 0.2 eth. They said they will return the amount ASAP.
Here is the…
0
votes
1 answer
Balance does not reflect internal transactions
I am trying to cash out about $3k in Nft sales from the last 2 weeks. I see the Nft sale transactions under transactions (out) and internal transactions tab shows the ether proceeds. Both those definitely do not reflect in my wallet balance-why and…