Skip to content

Commit

Permalink
resolve merge conflict
Browse files Browse the repository at this point in the history
  • Loading branch information
cam-schultz committed Jan 12, 2024
1 parent 375671c commit 10ed00a
Showing 1 changed file with 4 additions and 4 deletions.
8 changes: 4 additions & 4 deletions tests/basic_relay.go
Original file line number Diff line number Diff line change
Expand Up @@ -272,15 +272,15 @@ func BasicRelay(network interfaces.LocalNetwork) {
log.Info("Waiting for a new block confirmation on subnet B")
<-newHeadsB
delivered1, err := subnetBInfo.TeleporterMessenger.MessageReceived(
&bind.CallOpts{}, subnetAInfo.BlockchainID, id1,
&bind.CallOpts{}, id1,
)
Expect(err).Should(BeNil())
delivered2, err := subnetBInfo.TeleporterMessenger.MessageReceived(
&bind.CallOpts{}, subnetAInfo.BlockchainID, id2,
&bind.CallOpts{}, id2,
)
Expect(err).Should(BeNil())
delivered3, err := subnetBInfo.TeleporterMessenger.MessageReceived(
&bind.CallOpts{}, subnetAInfo.BlockchainID, id3,
&bind.CallOpts{}, id3,
)
Expect(err).Should(BeNil())
Expect(delivered1).Should(BeFalse())
Expand All @@ -298,7 +298,7 @@ func sendBasicTeleporterMessage(
destination interfaces.SubnetTestInfo,
fundedKey *ecdsa.PrivateKey,
fundedAddress common.Address,
) (teleportermessenger.TeleporterMessage, *big.Int) {
) (teleportermessenger.TeleporterMessage, ids.ID) {
log.Info("Packing Teleporter message")
teleporterMessage := teleportermessenger.TeleporterMessage{
MessageNonce: big.NewInt(1),
Expand Down

0 comments on commit 10ed00a

Please sign in to comment.