Skip to content

Commit

Permalink
Merge branch 'develop' of https://github.com/cryptape/nervos.js into …
Browse files Browse the repository at this point in the history
…develop
  • Loading branch information
Keith-CY committed Sep 20, 2018
2 parents 7eee80d + 415350d commit 135bc82
Show file tree
Hide file tree
Showing 4 changed files with 6 additions and 6 deletions.
6 changes: 3 additions & 3 deletions packages/nervos-chain/README.md
Original file line number Diff line number Diff line change
Expand Up @@ -397,7 +397,7 @@ const transaction = {
from: '0xb4061fA8E18654a7d51FEF3866d45bB1DC688717',
privateKey,
nonce: 999999,
quota: 1000000,
quota: 1e10,
chainId: 1,
version: 0,
validUntilBlock: 999999,
Expand Down Expand Up @@ -475,7 +475,7 @@ nervos.appchain.signer({
data:
'6060604052341561000f57600080fd5b60d38061001d6000396000f3006060604052600436106049576000357c0100000000000000000000000000000000000000000000000000000000900463ffffffff16806360fe47b114604e5780636d4ce63c14606e575b600080fd5b3415605857600080fd5b606c60048080359060200190919050506094565b005b3415607857600080fd5b607e609e565b6040518082815260200191505060405180910390f35b8060008190555050565b600080549050905600a165627a7a723058202d9a0979adf6bf48461f24200e635bc19cd1786efbcfc0608eb1d76114d405860029',
nonce: '47',
quota: 999999,
quota: 2.1e13,
validUntilBlock: 114930,
version: 0,
chainId: 1,
Expand All @@ -502,7 +502,7 @@ nervos.appchain.signer({
* chainId: 1,
* data: [...],
* nonce: '2e96d7a387092faa' ,
* quota: 50000,
* quota: 1e10,
* to: '',
* validUntilBlock: 663228,
* value: [...],
Expand Down
2 changes: 1 addition & 1 deletion packages/nervos-chain/examples/deploy.js
Original file line number Diff line number Diff line change
Expand Up @@ -15,7 +15,7 @@ const transaction = {
from: '0xb4061fA8E18654a7d51FEF3866d45bB1DC688717',
privateKey,
nonce: 999999,
quota: 1000000,
quota: 1e8,
data: bytecode,
chainId: 1,
version: 0,
Expand Down
2 changes: 1 addition & 1 deletion packages/nervos-chain/examples/transfer.js
Original file line number Diff line number Diff line change
Expand Up @@ -15,7 +15,7 @@ const transaction = {
from: '0XB4061FA8E18654A7D51FEF3866D45BB1DC688717',
privateKey,
nonce: 999999,
quota: 1000000,
quota: 1e8,
chainId: 1,
version: 0,
validUntilBlock: 999999,
Expand Down
2 changes: 1 addition & 1 deletion packages/nervos-chain/test/config.js
Original file line number Diff line number Diff line change
Expand Up @@ -15,7 +15,7 @@ const tx = {
privateKey,
data: bytecode,
nonce: 999999,
quota: 1000000,
quota: 1e8,
chainId: 1,
version: 0,
validUntilBlock: 999999,
Expand Down

0 comments on commit 135bc82

Please sign in to comment.