Skip to content

Commit e171a26

Browse files
committed
revert changes to example go and typescript
1 parent 6a56ba5 commit e171a26

File tree

2 files changed

+0
-4
lines changed

2 files changed

+0
-4
lines changed

public/samples/DataFeeds/SVR/broadcaster.go

Lines changed: 0 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,8 +1,6 @@
11
import "github.com/flashbots/mev-share-node/mevshare"
22

33
// ... create and sign your transaction
4-
// Your transaction should send ETH to block.coinbase as the bid
5-
// Example: Include a call that does payable(block.coinbase).transfer(msg.value)
64
tx := types.NewTransaction(...)
75
signedTx, err := types.SignTx(tx, ...)
86
txBytes := signedTx.MarshalBinary()

public/samples/DataFeeds/SVR/broadcaster.ts

Lines changed: 0 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -14,8 +14,6 @@ async function sendBackrunBundle(pendingTx: IPendingTransaction) {
1414
}
1515

1616
async function buildDummyBackrunTx(pendingTx: IPendingTransaction) {
17-
// Your liquidation transaction should send ETH to block.coinbase as the bid
18-
// Example: Include a call that does payable(block.coinbase).transfer(tipAmount)
1917
const backrunTx = { data: {}, maxFeePerGas: 22000, maxPriorityFeePerGas: 22000 }
2018
const signedBackrunTx = await executorWallet.signTransaction(backrunTx)
2119
return signedBackrunTx

0 commit comments

Comments
 (0)