Skip to content
This repository has been archived by the owner on Jun 9, 2024. It is now read-only.

Commit

Permalink
fix(miner): use unixnano for block time
Browse files Browse the repository at this point in the history
  • Loading branch information
Ganesha Upadhyaya authored and Ganesha Upadhyaya committed Feb 22, 2024
1 parent 941a580 commit 7b19093
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion cosmos/runtime/miner/miner.go
Original file line number Diff line number Diff line change
Expand Up @@ -102,7 +102,7 @@ func (m *Miner) submitPayloadForBuilding(ctx context.Context) error {
err error
payload *miner.Payload
sCtx = sdk.UnwrapSDKContext(ctx)
payloadArgs = m.constructPayloadArgs(uint64(sCtx.BlockTime().Unix()))
payloadArgs = m.constructPayloadArgs(uint64(sCtx.BlockTime().UnixNano()))
)

// Set the mining context for geth to build the payload with.
Expand Down

0 comments on commit 7b19093

Please sign in to comment.