Browse Source

rpc: clarify timestamps (#304)

* clarify timestamps

* changelog entry

* Update spec/rpc/README.md

Co-authored-by: Callum Waters <cmwaters19@gmail.com>

Co-authored-by: Callum Waters <cmwaters19@gmail.com>
pull/7804/head
Marko 3 years ago
committed by GitHub
parent
commit
a2a9ffbe7e
No known key found for this signature in database GPG Key ID: 4AEE18F83AFDEB23
2 changed files with 9 additions and 0 deletions
  1. +1
    -0
      CHANGELOG.md
  2. +8
    -0
      spec/rpc/README.md

+ 1
- 0
CHANGELOG.md View File

@ -5,3 +5,4 @@ All notable changes to the spec will be documented in this file for easy referen
## [Unreleased]
- [RPC] [#276](https://github.com/tendermint/spec/pull/276): Add specification for RPC (@marbar3778)
- [RPC] [#304](https://github.com/tendermint/spec/pull/304): Clarify timestamp format (@marbar3778)

+ 8
- 0
spec/rpc/README.md View File

@ -41,6 +41,14 @@ This file defines the JSON-RPC spec of Tendermint. This is meant to be implement
| [BroadcastTxAsync](#broadcasttxasync) | ✅ | ✅ |
| [BroadcastEvidence](#broadcastevidence) | ✅ | ✅ |
## Timestamps
Timestamps in the RPC layer of Tendermint follows RFC3339Nano. The RFC3339Nano format removes trailing zeros from the seconds field.
This means if a block has a timestamp like: `1985-04-12T23:20:50.5200000Z`, the value returned in the RPC will be `1985-04-12T23:20:50.52Z`.
## Info Routes
### Health


Loading…
Cancel
Save