Skip to content

Instantly share code, notes, and snippets.

@kimagure44
Last active January 18, 2019 18:40
Show Gist options
  • Save kimagure44/e3983d26f37751228c97e3a1d4ecfdf0 to your computer and use it in GitHub Desktop.
Save kimagure44/e3983d26f37751228c97e3a1d4ecfdf0 to your computer and use it in GitHub Desktop.
pragma solidity ^0.4.0;
contract ContratoPagar {
function ContratoPagar() {
}
// Añadiendo la palabra reservada payable ya puede recibir dinero
function recibirDinero() payable {
}
function consultarDinero() constant returns(uint) {
// this hace referencia al contrato
return this.balance;
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment