Intenté implementar un contrato en Ropsten, pero siempre recibo el siguiente error

PS D:\nodejs\rff\metacoin> truffle --network ropsten migrate
Using network 'ropsten'.

Running migration: 1_initial_migration.js
  Deploying Migrations...
Error encountered, bailing. Network state unknown. Review successful transactions manually.
undefined

Luego abro la Metacoin y vuelvo a hacer truffle --network ropsten. ocurrió el mismo error. Mi truffle.js de la siguiente manera:

var HDWalletProvider = require("truffle-hdwallet-provider");

var mnemonic = "<My Mneomonic>";


module.exports = {
  networks: {
    rinkeby: {
      host: "127.0.0.1", // Connect to geth on the specified
      port: 8545,
      from: "0xec14efb50fd9108a567b007479bd3345300d8374", // default address to use for any transaction Truffle makes during migrations
      network_id: 4,
      gas: 4612388 // Gas limit used for deploys
    },

    development: {
      host: "127.0.0.1",
      port: 8545,
      network_id: "*" // Match any network id
    },

    test: {
      gas: 6721975,
      gasPrice: 0,
      host: '127.0.0.1',
      port: 8545,
      network_id: '*' // Match any network id
    },

    ropsten: {
      from: "0x5FBC4Dde3019f7d93AA9c2b59E5537F3Fb1210df",
      gas: 6721975,
      gasPrice: 2,
      provider: new HDWalletProvider(mnemonic, "https://ropsten.infura.io/<My token>"),      
      network_id: 3
    }
  }
}

También probé Rinkeby y testnet. todo va bien luego pruebo Rinkeby con el proveedor: ' https://rinkeby.infura.io/ , obtuve el mismo error. ¿Alguien puede ayudar?

Respuestas (1)

El precio de la gasolina para Ropsten es demasiado bajo. Sugeriría usar alrededor de 10 Gwei o más (1 Gwei ~ "1000000000" wei).

Además, el límite de gas en Ropsten es de 4,7 millones. Si indica más, no se aceptará la transacción, incluso si no usa todo.