Skip to content

Commit

Permalink
Remove 'hello' and add TODO to provide correct 'validForBlock'
Browse files Browse the repository at this point in the history
  • Loading branch information
forshtat committed Jul 29, 2024
1 parent 6a96569 commit d984a60
Showing 1 changed file with 2 additions and 1 deletion.
3 changes: 2 additions & 1 deletion packages/bundler/src/BundlerServer.ts
Original file line number Diff line number Diff line change
Expand Up @@ -237,7 +237,8 @@ export class BundlerServer {
throw new RpcError(`Method ${method} is not supported`, -32601)
}
const [bundle] = await this.methodHandlerRip7560.getRip7560Bundle(params[0], params[1], params[2])
result = { bundle, hello: 'hello!', validForBlock: 0 }
// TODO: provide a correct value for 'validForBlock'
result = { bundle, validForBlock: 0 }
console.log('handleMethod eth_getRip7560Bundle:\n', result)
break
}
Expand Down

0 comments on commit d984a60

Please sign in to comment.