Skip to content

Commit

Permalink
Merge pull request #74 from FastLane-Labs/multi-bundler
Browse files Browse the repository at this point in the history
Type error fix
  • Loading branch information
jj1980a authored Aug 10, 2024
2 parents 6ebb414 + 35862fe commit 378fedd
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion core/api.go
Original file line number Diff line number Diff line change
Expand Up @@ -187,7 +187,7 @@ func (api *Api) GetBundleHash(w http.ResponseWriter, r *http.Request) {
return
}

if retrieveReq.Wait && atlasTxHash == (common.Hash{}) {
if retrieveReq.Wait && atlasTxHash == nil {
bundle := <-completionChan
atlasTxHash, relayErr = bundle.GetResult()
if relayErr != nil {
Expand Down

0 comments on commit 378fedd

Please sign in to comment.