Skip to content

Commit 1f140ea

Browse files
authored
chore: adding sentinel path for solomachine header (#2748)
chore(statemachine)!: Adding sentinel value for header path in 06-solomachine.
1 parent a05247c commit 1f140ea

File tree

4 files changed

+7
-3
lines changed

4 files changed

+7
-3
lines changed

CHANGELOG.md

+2-1
Original file line numberDiff line numberDiff line change
@@ -69,7 +69,8 @@ Ref: https://keepachangelog.com/en/1.0.0/
6969
### State Machine Breaking
7070

7171
* (light-clients/07-tendermint) [\#2554](https://github.com/cosmos/ibc-go/pull/2554) Forbid negative values for `TrustingPeriod`, `UnbondingPeriod` and `MaxClockDrift` (as specified in ICS-07).
72-
* (06-solomachine) [\#2744](https://github.com/cosmos/ibc-go/pull/2744) `Misbehaviour.ValidateBasic()` now only enforces that signature data does not match when the signature paths are different.
72+
* (06-solomachine) [\#2744](https://github.com/cosmos/ibc-go/pull/2744) `Misbehaviour.ValidateBasic()` now only enforces that signature data does not match when the signature paths are different.
73+
* (06-solomachine) [\#2748](https://github.com/cosmos/ibc-go/pull/2748) Adding sentinel value for header path in 06-solomachine.
7374

7475
### Improvements
7576

modules/light-clients/06-solomachine/header.go

+3
Original file line numberDiff line numberDiff line change
@@ -10,6 +10,9 @@ import (
1010
"github.com/cosmos/ibc-go/v6/modules/core/exported"
1111
)
1212

13+
// SentinelHeaderPath defines a placeholder path value used for headers in solomachine client updates
14+
const SentinelHeaderPath = "solomachine:header"
15+
1316
var _ exported.ClientMessage = &Header{}
1417

1518
// ClientType defines that the Header is a Solo Machine.

modules/light-clients/06-solomachine/update.go

+1-1
Original file line numberDiff line numberDiff line change
@@ -57,7 +57,7 @@ func (cs ClientState) verifyHeader(ctx sdk.Context, cdc codec.BinaryCodec, clien
5757
Sequence: header.Sequence,
5858
Timestamp: header.Timestamp,
5959
Diversifier: cs.ConsensusState.Diversifier,
60-
Path: []byte{},
60+
Path: []byte(SentinelHeaderPath),
6161
Data: dataBz,
6262
}
6363

testing/solomachine.go

+1-1
Original file line numberDiff line numberDiff line change
@@ -126,7 +126,7 @@ func (solo *Solomachine) CreateHeader(newDiversifier string) *solomachine.Header
126126
Sequence: solo.Sequence,
127127
Timestamp: solo.Time,
128128
Diversifier: solo.Diversifier,
129-
Path: []byte{},
129+
Path: []byte(solomachine.SentinelHeaderPath),
130130
Data: dataBz,
131131
}
132132

0 commit comments

Comments
 (0)