Skip to content

Commit

Permalink
feat(vm): update risc0-server version
Browse files Browse the repository at this point in the history
  • Loading branch information
huangzhiran authored Nov 8, 2023
2 parents 9e33f23 + 55ac249 commit df87dcc
Show file tree
Hide file tree
Showing 3 changed files with 3 additions and 3 deletions.
2 changes: 1 addition & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -26,7 +26,7 @@ wsctl node log
### step 6
open a new terminal and execute
```bash
wsctl message send -p "test01" -v "0.1" -d "{\"private_input\":\"14\", \"public_input\":\"3,34\", \"receipt_type\":\"Snark\"}"
wsctl message send -p "test01" -v "0.1" -d "{\"private_input\":\"14\", \"public_input\":\"3,34\", \"receipt_type\":\"Stark\"}"
```
will see log on `wsctl node log` terminal

Expand Down
2 changes: 1 addition & 1 deletion docker-compose.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -20,7 +20,7 @@ services:
- .:/data

risc0:
image: iotexdev/risc0server:v0.8rc1
image: iotexdev/risc0server:v0.8.stark
depends_on:
- "postgres"
container_name: risc0-service
Expand Down
2 changes: 1 addition & 1 deletion output/chain/eth/tx.go
Original file line number Diff line number Diff line change
Expand Up @@ -39,7 +39,7 @@ func SendTX(ctx context.Context, endpoint, privateKey, toStr string, data []byte
&types.LegacyTx{
Nonce: nonce,
GasPrice: gasPrice,
Gas: uint64(3000000), // TODO get gas limit by cli.EstimateGas
Gas: uint64(3000000000), // TODO get gas limit by cli.EstimateGas
To: &to,
Data: data,
})
Expand Down

0 comments on commit df87dcc

Please sign in to comment.