Skip to content

Commit

Permalink
Use RFC3339Nano timestamp format in manifest mains section (#373)
Browse files Browse the repository at this point in the history
  • Loading branch information
pbukva authored Jun 17, 2024
1 parent 1bc7ecf commit e2e058e
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions cmd/fetchd/cmd/genesis-asi-upgrade.go
Original file line number Diff line number Diff line change
Expand Up @@ -364,8 +364,8 @@ func ASIGenesisUpgradeUpdateGenesisTime(genDoc *types.GenesisDoc, newGenesisTime
}
genDoc.GenesisTime = tmtime.Canonical(genesisTime)
manifest.Network.GenesisTime = &ValueUpdate{
From: oldGenesisTime.String(),
To: genDoc.GenesisTime.String(),
From: oldGenesisTime.Format(time.RFC3339Nano),
To: genDoc.GenesisTime.Format(time.RFC3339Nano),
}
}
}
Expand Down

0 comments on commit e2e058e

Please sign in to comment.