Transaction Underpriced no matter what I put in for gasPrice and gasLimit
up vote
0
down vote
favorite
I'm currently testing out wallet to wallet transfers on the Ropsten test network but my transaction is always underpriced. Here's the txObject for reference:
function buildTransferTxObject(nonce, toAddress, value)
const gasPriceRopsten = web3.eth.getGasPrice()
this.nonce = web3.utils.toHex(nonce);
this.toAddress = toAddress;
this.value = web3.utils.toHex(web3.utils.toWei(value, 'ether'));
this.gasLimit = web3.utils.toHex(21000);
this.gasPrice = web3.utils.toHex(gasPriceRopsten);
;
ethereum web3 go-ethereum
add a comment |
up vote
0
down vote
favorite
I'm currently testing out wallet to wallet transfers on the Ropsten test network but my transaction is always underpriced. Here's the txObject for reference:
function buildTransferTxObject(nonce, toAddress, value)
const gasPriceRopsten = web3.eth.getGasPrice()
this.nonce = web3.utils.toHex(nonce);
this.toAddress = toAddress;
this.value = web3.utils.toHex(web3.utils.toWei(value, 'ether'));
this.gasLimit = web3.utils.toHex(21000);
this.gasPrice = web3.utils.toHex(gasPriceRopsten);
;
ethereum web3 go-ethereum
What do you mean by "underpriced"? Is it successfully submitted and not being mined? Are you sure the nonce is correct and not skipping the next sequential value? Please include the transaction id.
– Adam Kipnis
Nov 9 at 1:28
add a comment |
up vote
0
down vote
favorite
up vote
0
down vote
favorite
I'm currently testing out wallet to wallet transfers on the Ropsten test network but my transaction is always underpriced. Here's the txObject for reference:
function buildTransferTxObject(nonce, toAddress, value)
const gasPriceRopsten = web3.eth.getGasPrice()
this.nonce = web3.utils.toHex(nonce);
this.toAddress = toAddress;
this.value = web3.utils.toHex(web3.utils.toWei(value, 'ether'));
this.gasLimit = web3.utils.toHex(21000);
this.gasPrice = web3.utils.toHex(gasPriceRopsten);
;
ethereum web3 go-ethereum
I'm currently testing out wallet to wallet transfers on the Ropsten test network but my transaction is always underpriced. Here's the txObject for reference:
function buildTransferTxObject(nonce, toAddress, value)
const gasPriceRopsten = web3.eth.getGasPrice()
this.nonce = web3.utils.toHex(nonce);
this.toAddress = toAddress;
this.value = web3.utils.toHex(web3.utils.toWei(value, 'ether'));
this.gasLimit = web3.utils.toHex(21000);
this.gasPrice = web3.utils.toHex(gasPriceRopsten);
;
ethereum web3 go-ethereum
ethereum web3 go-ethereum
edited Nov 9 at 1:16
asked Nov 9 at 1:07
Rohan Kapur
83
83
What do you mean by "underpriced"? Is it successfully submitted and not being mined? Are you sure the nonce is correct and not skipping the next sequential value? Please include the transaction id.
– Adam Kipnis
Nov 9 at 1:28
add a comment |
What do you mean by "underpriced"? Is it successfully submitted and not being mined? Are you sure the nonce is correct and not skipping the next sequential value? Please include the transaction id.
– Adam Kipnis
Nov 9 at 1:28
What do you mean by "underpriced"? Is it successfully submitted and not being mined? Are you sure the nonce is correct and not skipping the next sequential value? Please include the transaction id.
– Adam Kipnis
Nov 9 at 1:28
What do you mean by "underpriced"? Is it successfully submitted and not being mined? Are you sure the nonce is correct and not skipping the next sequential value? Please include the transaction id.
– Adam Kipnis
Nov 9 at 1:28
add a comment |
active
oldest
votes
active
oldest
votes
active
oldest
votes
active
oldest
votes
active
oldest
votes
Thanks for contributing an answer to Stack Overflow!
- Please be sure to answer the question. Provide details and share your research!
But avoid …
- Asking for help, clarification, or responding to other answers.
- Making statements based on opinion; back them up with references or personal experience.
To learn more, see our tips on writing great answers.
Some of your past answers have not been well-received, and you're in danger of being blocked from answering.
Please pay close attention to the following guidance:
- Please be sure to answer the question. Provide details and share your research!
But avoid …
- Asking for help, clarification, or responding to other answers.
- Making statements based on opinion; back them up with references or personal experience.
To learn more, see our tips on writing great answers.
Sign up or log in
StackExchange.ready(function ()
StackExchange.helpers.onClickDraftSave('#login-link');
);
Sign up using Google
Sign up using Facebook
Sign up using Email and Password
Post as a guest
Required, but never shown
StackExchange.ready(
function ()
StackExchange.openid.initPostLogin('.new-post-login', 'https%3a%2f%2fstackoverflow.com%2fquestions%2f53218400%2ftransaction-underpriced-no-matter-what-i-put-in-for-gasprice-and-gaslimit%23new-answer', 'question_page');
);
Post as a guest
Required, but never shown
Sign up or log in
StackExchange.ready(function ()
StackExchange.helpers.onClickDraftSave('#login-link');
);
Sign up using Google
Sign up using Facebook
Sign up using Email and Password
Post as a guest
Required, but never shown
Sign up or log in
StackExchange.ready(function ()
StackExchange.helpers.onClickDraftSave('#login-link');
);
Sign up using Google
Sign up using Facebook
Sign up using Email and Password
Post as a guest
Required, but never shown
Sign up or log in
StackExchange.ready(function ()
StackExchange.helpers.onClickDraftSave('#login-link');
);
Sign up using Google
Sign up using Facebook
Sign up using Email and Password
Sign up using Google
Sign up using Facebook
Sign up using Email and Password
Post as a guest
Required, but never shown
Required, but never shown
Required, but never shown
Required, but never shown
Required, but never shown
Required, but never shown
Required, but never shown
Required, but never shown
Required, but never shown
What do you mean by "underpriced"? Is it successfully submitted and not being mined? Are you sure the nonce is correct and not skipping the next sequential value? Please include the transaction id.
– Adam Kipnis
Nov 9 at 1:28