This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
/** | |
* @file | |
* @copyright defined in eos/LICENSE.txt | |
*/ | |
#include <nebula.stress/nebula.stress.hpp> | |
namespace nebula { | |
void stress::defer(uint32_t amount) { |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
#pragma once | |
#include <eosiolib/eosio.hpp> | |
#include <eosiolib/transaction.hpp> | |
namespace nebula | |
{ | |
using eosio::name; | |
using std::string; |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
FROM ubuntu:18.04 | |
ARG release=latest | |
ARG eosbranch=v1.6.4 | |
ARG eoscdtbranch=v1.6.1 | |
ARG token=EOS | |
ENV OPENSSL_ROOT_DIR /usr/include/openssl | |
RUN apt-get update -y \ |
OlderNewer