Skip to main content

You are not logged in. Your edit will be placed in a queue until it is peer reviewed.

We welcome edits that make the post easier to understand and more valuable for readers. Because community members review edits, please try to make the post substantially better than how you found it, for example, by fixing grammar or adding additional resources and hyperlinks.

Required fields*

7
  • You were correct, main thing is a gas issue but the other problem remains. I cant get the transaction Info because the app gets stuck in the function line await proposalsFunction.SendTransactionAsync(AccountHelper.AddressFrom,...). Same thing happens in this as well: await Web3.Personal.UnlockAccount.SendRequestAsync(AddressFrom, ...); Commented Aug 1, 2016 at 11:43
  • Btw, is there a way to know the exact gas requirements beforehand like in the wallet so I can send that specific amount. Also what is the value field for? Commented Aug 1, 2016 at 11:56
  • Value is the amout of ether you want to send to an address (can be a contract) Commented Aug 1, 2016 at 12:42
  • What are you usig RPC or IPC? have you got all flags enabled? personal, eth etc? Commented Aug 1, 2016 at 12:44
  • You have eth_estimateGas rpc call that you can use passing it the transaction. Ill create in web3 a simple method for this. Commented Aug 1, 2016 at 12:47