Skip to content

Commit

Permalink
Fix: quotation mark (#3623)
Browse files Browse the repository at this point in the history
  • Loading branch information
jasmyhigh authored Dec 27, 2024
1 parent 9c69c9f commit e77a17f
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 4 deletions.
6 changes: 3 additions & 3 deletions vms/avm/service.md
Original file line number Diff line number Diff line change
Expand Up @@ -989,10 +989,10 @@ avm.getBlockByHeight({
```sh
curl -X POST --data '{
"jsonrpc": "2.0",
"method": "avm.getBlockByHeight,
"method": "avm.getBlockByHeight",
"params": {
height”: “275686313486,
"encoding": hex
"height": "275686313486",
"encoding": "hex"
},
"id": 1
}' -H 'content-type:application/json;' 127.0.0.1:9650/ext/bc/X
Expand Down
2 changes: 1 addition & 1 deletion vms/platformvm/docs/chain_time_update.md
Original file line number Diff line number Diff line change
Expand Up @@ -20,7 +20,7 @@ Before the Banff fork activation, `ChainTime` was incremented by an `AdvanceTime
2. *Synchronicity*: proposed time must not be greater than node’s current time plus a synchronicity bound (currently set to 10 seconds).
3. *No Skipping*: proposed time must be less than or equal to the next staking event, that is start/end of any staker.

Note that *Synchronicity* makes sure that `ChainTime` approximates real time flow. If we dropped synchronicity requirement, a staker could declare any staking time and immediately push `ChainTime` to the end, so as to pocket a reward without having actually carried out any activity in the real time.
Note that *Synchronicity* makes sure that `ChainTime` approximates "real" time flow. If we dropped synchronicity requirement, a staker could declare any staking time and immediately push `ChainTime` to the end, so as to pocket a reward without having actually carried out any activity in the "real" time.

## Post Banff fork context

Expand Down

0 comments on commit e77a17f

Please sign in to comment.