Empresas
Empleos
  • Sobre nosotros
  • Soluciones
    • Publicación de vacantes
      Publica tu vacante y recibe candidatos calificados en 48h.
    • Evaluación de candidatos
      500+ pruebas técnicas y psicológicas, más anti-fraude.
    • Headhunting
      Búsqueda ejecutiva a la medida de principio a fin.
    • Nómina + EOR
      Dispersión de nómina y EOR en más de 15 países de LATAM.
  • Precios
  • Empleos

0

221
Vistas
Unable to compare the ETH values in a Truffle testing

I'm testing a payment feature of a smart contract on Truffle, but I'm unable to compare the ETH values:

Smart Contract

uint256 public price; 
uint256 payment;

constructor(
    uint256 _price,
) public payable {
    require(
        _price > 0,
        "The price has to be greater than 0."
    );
    
    price = _price;
}
                                        
// The caller of the method should provide the correct amount of ETH as required.
function pay() public payable {
    require(
        msg.value == price,
        "Incorrect price."
    );

    payment = msg.value;
}

Testing

contract('Payment Test', (accounts) => {
  let contract, priceInput;
  beforeEach(async function () {
    priceInput = web3.utils.toWei("1", "ether");
    contract = await MyContract.deployed(priceInput, { from: accounts[0] });
  });

  it("Successfully make a payment", async () => {
    try {
    // Using the same amount used in the constructor here "priceInput"
      await contract.pay({ from: accounts[1], value: priceInput });
    } catch (e) {
      console.log(e)
    }

    // assertions
  });
})

I'm getting the revert error:

'RuntimeError: VM Exception while processing transaction: revert Incorrect price.\n'

I've tried number literals like 100, instead of web3.utils.toWei("1", "ether"), as the value to pass, but get the same result.

about 4 years ago · Juan Pablo Isaza
Responde la pregunta
Encuentra empleos remotos

¡Descubre la nueva forma de encontrar empleo!

Top de empleos
Top categorías de empleo
Empresas
Publicar vacante Precios Comercial
Legal
Términos y condiciones Política de privacidad
© 2026 PeakU Inc. All Rights Reserved.
Andres GPT
Recomiéndame algunas ofertas
Necesito ayuda