Skip to content

Instantly share code, notes, and snippets.

@kesar
Created January 22, 2019 21:59
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save kesar/94eaae9a8d42b51744cac22a22808c65 to your computer and use it in GitHub Desktop.
Save kesar/94eaae9a8d42b51744cac22a22808c65 to your computer and use it in GitHub Desktop.
#pragma once
#include <eosiolib/eosio.hpp>
#include <eosiolib/transaction.hpp>
namespace nebula
{
using eosio::name;
using std::string;
CONTRACT stress: public eosio::contract
{
public:
using eosio::contract::contract;
ACTION defer(uint32_t amount);
ACTION stress2(uint32_t index);
ACTION defer2(uint32_t amount, name to);
};
} /// namespace nebula
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment