Skip to content

Commit

Permalink
Merge pull request #110 from EOSIO/master
Browse files Browse the repository at this point in the history
Pull from upstream
  • Loading branch information
jchung00 authored Jan 16, 2019
2 parents a4d4f02 + 3fddb72 commit 603895d
Show file tree
Hide file tree
Showing 224 changed files with 2,128 additions and 1,115 deletions.
2 changes: 1 addition & 1 deletion .gitmodules
Original file line number Diff line number Diff line change
Expand Up @@ -29,4 +29,4 @@
url = https://github.com/EOSIO/fc
[submodule "libraries/wabt"]
path = libraries/wabt
url = http://github.com/EOSIO/wabt
url = https://github.com/EOSIO/wabt
4 changes: 2 additions & 2 deletions CMakeLists.txt
Original file line number Diff line number Diff line change
Expand Up @@ -34,8 +34,8 @@ set( CMAKE_CXX_EXTENSIONS ON )
set( CXX_STANDARD_REQUIRED ON)

set(VERSION_MAJOR 1)
set(VERSION_MINOR 5)
set(VERSION_PATCH 1)
set(VERSION_MINOR 6)
set(VERSION_PATCH 0)

if(VERSION_SUFFIX)
set(VERSION_FULL "${VERSION_MAJOR}.${VERSION_MINOR}.${VERSION_PATCH}-${VERSION_SUFFIX}")
Expand Down
4 changes: 2 additions & 2 deletions Docker/README.md
Original file line number Diff line number Diff line change
Expand Up @@ -20,10 +20,10 @@ cd eos/Docker
docker build . -t eosio/eos
```

The above will build off the most recent commit to the master branch by default. If you would like to target a specific branch/tag, you may use a build argument. For example, if you wished to generate a docker image based off of the v1.5.1 tag, you could do the following:
The above will build off the most recent commit to the master branch by default. If you would like to target a specific branch/tag, you may use a build argument. For example, if you wished to generate a docker image based off of the 1.6.0 tag, you could do the following:

```bash
docker build -t eosio/eos:v1.5.1 --build-arg branch=v1.5.1 .
docker build -t eosio/eos:1.6.0 --build-arg branch=1.6.0 .
```

By default, the symbol in eosio.system is set to SYS. You can override this using the symbol argument while building the docker image.
Expand Down
3 changes: 0 additions & 3 deletions Docker/config.ini
Original file line number Diff line number Diff line change
Expand Up @@ -110,9 +110,6 @@ network-version-match = 0
# number of blocks to retrieve in a chunk from any individual peer during synchronization (eosio::net_plugin)
sync-fetch-span = 100

# maximum sizes of transaction or block messages that are sent without first sending a notice (eosio::net_plugin)
max-implicit-request = 1500

# Enable block production, even if the chain is stale. (eosio::producer_plugin)
enable-stale-production = false

Expand Down
18 changes: 9 additions & 9 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -39,31 +39,31 @@ $ brew remove eosio
```
#### Ubuntu 18.04 Debian Package Install
```sh
$ wget https://github.com/eosio/eos/releases/download/v1.5.1/eosio_1.5.1-1-ubuntu-18.04_amd64.deb
$ sudo apt install ./eosio_1.5.1-1-ubuntu-18.04_amd64.deb
$ wget https://github.com/eosio/eos/releases/download/v1.6.0/eosio_1.6.0-1-ubuntu-18.04_amd64.deb
$ sudo apt install ./eosio_1.6.0-1-ubuntu-18.04_amd64.deb
```
#### Ubuntu 16.04 Debian Package Install
```sh
$ wget https://github.com/eosio/eos/releases/download/v1.5.1/eosio_1.5.1-1-ubuntu-16.04_amd64.deb
$ sudo apt install ./eosio_1.5.1-1-ubuntu-16.04_amd64.deb
$ wget https://github.com/eosio/eos/releases/download/v1.6.0/eosio_1.6.0-1-ubuntu-16.04_amd64.deb
$ sudo apt install ./eosio_1.6.0-1-ubuntu-16.04_amd64.deb
```
#### Debian Package Uninstall
```sh
$ sudo apt remove eosio
```
#### Centos RPM Package Install
```sh
$ wget https://github.com/eosio/eos/releases/download/v1.5.1/eosio-1.5.1-1.el7.x86_64.rpm
$ sudo yum install ./eosio-1.5.1-1.el7.x86_64.rpm
$ wget https://github.com/eosio/eos/releases/download/v1.6.0/eosio-1.6.0-1.el7.x86_64.rpm
$ sudo yum install ./eosio-1.6.0-1.el7.x86_64.rpm
```
#### Centos RPM Package Uninstall
```sh
$ sudo yum remove eosio.cdt
```
#### Fedora RPM Package Install
```sh
$ wget https://github.com/eosio/eos/releases/download/v1.5.1/eosio-1.5.1-1.fc27.x86_64.rpm
$ sudo yum install ./eosio-1.5.1-1.fc27.x86_64.rpm
$ wget https://github.com/eosio/eos/releases/download/v1.6.0/eosio-1.6.0-1.fc27.x86_64.rpm
$ sudo yum install ./eosio-1.6.0-1.fc27.x86_64.rpm
```
#### Fedora RPM Package Uninstall
```sh
Expand Down Expand Up @@ -92,4 +92,4 @@ EOSIO currently supports the following operating systems:

<a name="gettingstarted"></a>
## Getting Started
Instructions detailing the process of getting the software, building it, running a simple test network that produces blocks, account creation and uploading a sample contract to the blockchain can be found in [Getting Started](https://developers.eos.io/eosio-nodeos/docs/overview-1) on the [EOSIO Developer Portal](https://developers.eos.io).
Instructions detailing the process of getting the software, building it, running a simple test network that produces blocks, account creation and uploading a sample contract to the blockchain can be found in [Getting Started](https://developers.eos.io/eosio-home/docs) on the [EOSIO Developer Portal](https://developers.eos.io).
2 changes: 1 addition & 1 deletion contracts/asserter/asserter.cpp
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
/**
* @file
* @copyright defined in eos/LICENSE.txt
* @copyright defined in eos/LICENSE
*/

#include <asserter/asserter.hpp> /// defines assert_def struct (abi)
Expand Down
2 changes: 1 addition & 1 deletion contracts/asserter/asserter.hpp
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
/**
* @file
* @copyright defined in eos/LICENSE.txt
* @copyright defined in eos/LICENSE
*/

#include <eosiolib/eosio.hpp>
Expand Down
2 changes: 1 addition & 1 deletion contracts/eosio.system/delegate_bandwidth.cpp
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
/**
* @file
* @copyright defined in eos/LICENSE.txt
* @copyright defined in eos/LICENSE
*/
#include "eosio.system.hpp"

Expand Down
2 changes: 1 addition & 1 deletion contracts/eosio.system/eosio.system.hpp
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
/**
* @file
* @copyright defined in eos/LICENSE.txt
* @copyright defined in eos/LICENSE
*/
#pragma once

Expand Down
2 changes: 1 addition & 1 deletion contracts/eosio.system/native.hpp
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
/**
* @file
* @copyright defined in eos/LICENSE.txt
* @copyright defined in eos/LICENSE
*/
#pragma once

Expand Down
2 changes: 1 addition & 1 deletion contracts/eosio.system/voting.cpp
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
/**
* @file
* @copyright defined in eos/LICENSE.txt
* @copyright defined in eos/LICENSE
*/
#include "eosio.system.hpp"

Expand Down
2 changes: 1 addition & 1 deletion contracts/eosio.token/eosio.token.cpp
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
/**
* @file
* @copyright defined in eos/LICENSE.txt
* @copyright defined in eos/LICENSE
*/

#include "eosio.token.hpp"
Expand Down
2 changes: 1 addition & 1 deletion contracts/eosio.token/eosio.token.hpp
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
/**
* @file
* @copyright defined in eos/LICENSE.txt
* @copyright defined in eos/LICENSE
*/
#pragma once

Expand Down
2 changes: 1 addition & 1 deletion contracts/eosiolib/action.h
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
/**
* @file
* @copyright defined in eos/LICENSE.txt
* @copyright defined in eos/LICENSE
*/
#pragma once
#include <eosiolib/system.h>
Expand Down
2 changes: 1 addition & 1 deletion contracts/eosiolib/action.hpp
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
/**
* @file
* @copyright defined in eos/LICENSE.txt
* @copyright defined in eos/LICENSE
*/
#pragma once
#include <eosiolib/action.h>
Expand Down
2 changes: 1 addition & 1 deletion contracts/eosiolib/chain.h
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
/**
* @file
* @copyright defined in eos/LICENSE.txt
* @copyright defined in eos/LICENSE
*/
#pragma once

Expand Down
2 changes: 1 addition & 1 deletion contracts/eosiolib/compiler_builtins.h
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
/**
* @file
* @copyright defined in eos/LICENSE.txt
* @copyright defined in eos/LICENSE
*/
#pragma once

Expand Down
2 changes: 1 addition & 1 deletion contracts/eosiolib/core_symbol.hpp.in
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
/** @file
* @copyright defined in eos/LICENSE.txt
* @copyright defined in eos/LICENSE
*
* \warning This file is machine generated. DO NOT EDIT. See core_symbol.hpp.in for changes.
*/
Expand Down
2 changes: 1 addition & 1 deletion contracts/eosiolib/crypto.h
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
/**
* @file
* @copyright defined in eos/LICENSE.txt
* @copyright defined in eos/LICENSE
*/
#pragma once
#include <eosiolib/types.h>
Expand Down
2 changes: 1 addition & 1 deletion contracts/eosiolib/datastream.hpp
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
/**
* @file datastream.hpp
* @copyright defined in eos/LICENSE.txt
* @copyright defined in eos/LICENSE
*/
#pragma once
#include <eosiolib/system.h>
Expand Down
2 changes: 1 addition & 1 deletion contracts/eosiolib/db.h
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
/**
* @file db.h
* @copyright defined in eos/LICENSE.txt
* @copyright defined in eos/LICENSE
* @brief Defines C API for interfacing with blockchain database
*/
#pragma once
Expand Down
2 changes: 1 addition & 1 deletion contracts/eosiolib/eosio.hpp
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
/**
* @file
* @copyright defined in eos/LICENSE.txt
* @copyright defined in eos/LICENSE
*/
#pragma once
#include <eosiolib/types.hpp>
Expand Down
2 changes: 1 addition & 1 deletion contracts/eosiolib/fixed_key.hpp
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
/**
* @file
* @copyright defined in eos/LICENSE.txt
* @copyright defined in eos/LICENSE
*/
#pragma once

Expand Down
2 changes: 1 addition & 1 deletion contracts/eosiolib/memory.h
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
/**
* @file
* @copyright defined in eos/LICENSE.txt
* @copyright defined in eos/LICENSE
*/
#pragma once

Expand Down
2 changes: 1 addition & 1 deletion contracts/eosiolib/memory.hpp
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
/**
* @file
* @copyright defined in eos/LICENSE.txt
* @copyright defined in eos/LICENSE
*/
#pragma once

Expand Down
2 changes: 1 addition & 1 deletion contracts/eosiolib/multi_index.hpp
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
/**
* @file
* @copyright defined in eos/LICENSE.txt
* @copyright defined in eos/LICENSE
*/
#pragma once

Expand Down
2 changes: 1 addition & 1 deletion contracts/eosiolib/permission.h
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
/**
* @file
* @copyright defined in eos/LICENSE.txt
* @copyright defined in eos/LICENSE
*/
#pragma once
#include <eosiolib/types.h>
Expand Down
2 changes: 1 addition & 1 deletion contracts/eosiolib/permission.hpp
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
/**
* @file
* @copyright defined in eos/LICENSE.txt
* @copyright defined in eos/LICENSE
*/
#pragma once

Expand Down
2 changes: 1 addition & 1 deletion contracts/eosiolib/print.h
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
/**
* @file
* @copyright defined in eos/LICENSE.txt
* @copyright defined in eos/LICENSE
*/
#pragma once

Expand Down
2 changes: 1 addition & 1 deletion contracts/eosiolib/print.hpp
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
/**
* @file
* @copyright defined in eos/LICENSE.txt
* @copyright defined in eos/LICENSE
*/
#pragma once
#include <eosiolib/print.h>
Expand Down
2 changes: 1 addition & 1 deletion contracts/eosiolib/system.h
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
/**
* @file
* @copyright defined in eos/LICENSE.txt
* @copyright defined in eos/LICENSE
*/
#pragma once
#include <eosiolib/types.h>
Expand Down
2 changes: 1 addition & 1 deletion contracts/eosiolib/transaction.h
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
/**
* @file
* @copyright defined in eos/LICENSE.txt
* @copyright defined in eos/LICENSE
*/
#pragma once
#include <eosiolib/types.h>
Expand Down
2 changes: 1 addition & 1 deletion contracts/eosiolib/transaction.hpp
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
/**
* @file
* @copyright defined in eos/LICENSE.txt
* @copyright defined in eos/LICENSE
*/
#pragma once
#include <eosiolib/transaction.h>
Expand Down
2 changes: 1 addition & 1 deletion contracts/eosiolib/types.h
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
/**
* @file
* @copyright defined in eos/LICENSE.txt
* @copyright defined in eos/LICENSE
*/
#pragma once

Expand Down
2 changes: 1 addition & 1 deletion contracts/eosiolib/types.hpp
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
/**
* @file
* @copyright defined in eos/LICENSE.txt
* @copyright defined in eos/LICENSE
*/
#pragma once
#include <eosiolib/types.h>
Expand Down
2 changes: 1 addition & 1 deletion contracts/eosiolib/varint.hpp
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
/**
* @file
* @copyright defined in eos/LICENSE.txt
* @copyright defined in eos/LICENSE
*/
#pragma once

Expand Down
2 changes: 1 addition & 1 deletion contracts/noop/noop.cpp
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
/**
* @file
* @copyright defined in eos/LICENSE.txt
* @copyright defined in eos/LICENSE
*/

#include <eosiolib/eosio.hpp>
Expand Down
2 changes: 1 addition & 1 deletion contracts/proxy/proxy.cpp
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
/**
* @file
* @copyright defined in eos/LICENSE.txt
* @copyright defined in eos/LICENSE
*/
#include <proxy/proxy.hpp>
#include <eosiolib/transaction.hpp>
Expand Down
2 changes: 1 addition & 1 deletion contracts/proxy/proxy.hpp
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
/**
* @file
* @copyright defined in eos/LICENSE.txt
* @copyright defined in eos/LICENSE
*/
#pragma once

Expand Down
2 changes: 1 addition & 1 deletion contracts/skeleton/skeleton.hpp
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
/**
* @file
* @copyright defined in eos/LICENSE.txt
* @copyright defined in eos/LICENSE
*/
#include <eosiolib/eosio.hpp>

Expand Down
2 changes: 1 addition & 1 deletion contracts/stltest/stltest.cpp
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
/**
* @file
* @copyright defined in eos/LICENSE.txt
* @copyright defined in eos/LICENSE
*/
// include entire libc
#include <alloca.h>
Expand Down
2 changes: 1 addition & 1 deletion contracts/test_api/test_action.cpp
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
/**
* @file action_test.cpp
* @copyright defined in eos/LICENSE.txt
* @copyright defined in eos/LICENSE
*/
#include <eosiolib/action.hpp>
#include <eosiolib/transaction.hpp>
Expand Down
2 changes: 1 addition & 1 deletion contracts/test_api/test_api.cpp
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
/**
* @file
* @copyright defined in eos/LICENSE.txt
* @copyright defined in eos/LICENSE
*/
#include <eosiolib/eosio.hpp>
#include <eosiolib/transaction.hpp>
Expand Down
2 changes: 1 addition & 1 deletion contracts/test_api/test_api.hpp
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
/**
* @file
* @copyright defined in eos/LICENSE.txt
* @copyright defined in eos/LICENSE
*/
#pragma once
#include "test_api_common.hpp"
Expand Down
Loading

0 comments on commit 603895d

Please sign in to comment.