Skip to content
This repository has been archived by the owner on Jul 14, 2022. It is now read-only.

Commit

Permalink
Merge pull request #7 from GincoInc/fix-send-tx
Browse files Browse the repository at this point in the history
 🔧 Fix: send transaction
  • Loading branch information
seitau authored Apr 6, 2022
2 parents 8bdf271 + a23ebca commit 6c07b84
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion flow_helpers/flow_helpers.go
Original file line number Diff line number Diff line change
Expand Up @@ -32,7 +32,7 @@ const hexPrefix = "0x"

// LatestBlockId retuns the flow.Identifier for the latest block in the chain.
func LatestBlockId(ctx context.Context, flowClient FlowClient) (*flow.Identifier, error) {
block, err := flowClient.GetLatestBlockHeader(ctx, true)
block, err := flowClient.GetLatestBlockHeader(ctx, false)
if err != nil {
return nil, err
}
Expand Down

0 comments on commit 6c07b84

Please sign in to comment.