Skip to content

Commit

Permalink
fix param order
Browse files Browse the repository at this point in the history
  • Loading branch information
lbtsm committed Apr 11, 2024
1 parent 23c8bed commit 17bb367
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion chains/conflux/chain.go
Original file line number Diff line number Diff line change
Expand Up @@ -140,7 +140,7 @@ func assembleProof(m *chain.Messenger, log *types.Log, proofType int64, toChainI
}

m.Log.Info("getPivot", "pivot", pivot)
payload, err := conflux.AssembleProof(cli, log.TxHash, log.BlockNumber, uint64(proofType), pivot.Uint64(), method, m.Cfg.Id)
payload, err := conflux.AssembleProof(cli, log.TxHash, log.BlockNumber, pivot.Uint64(), uint64(proofType), method, m.Cfg.Id)
if err != nil {
return nil, fmt.Errorf("unable to Parse Log: %w", err)
}
Expand Down

0 comments on commit 17bb367

Please sign in to comment.