Skip to content
This repository has been archived by the owner on Sep 26, 2019. It is now read-only.

Removing smart quotes #1381

Merged
merged 2 commits into from
May 2, 2019
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
8 changes: 4 additions & 4 deletions docs/Configuring-Pantheon/FreeGas.md
Original file line number Diff line number Diff line change
Expand Up @@ -31,15 +31,15 @@ block and contract size limits to the maximum values.
Set the block size limit (measured in gas) to the maximum accepted by Truffle (`0x1fffffffffffff`) in the genesis file:

```json
gasLimit”: “0x1fffffffffffff
"gasLimit": "0x1fffffffffffff"
```

### 2. Set Contract Size

Set the contract size limit to the maximum supported size (in bytes) in the `config` section of the genesis file:

```json
contractSizeLimit: 2147483647
"contractSizeLimit": 2147483647
```

### 3. Start Pantheon with Minimum Gas Price of 0
Expand Down Expand Up @@ -79,5 +79,5 @@ Update the `truffle-config.js` file:
1. Set the gas limit for a transaction (that is, contract creation) to be the block gas limit - 1

```js
gas: 0x1ffffffffffffe
```
gas: "0x1ffffffffffffe"
```