Skip to content

Commit 7fce8c1

Browse files
committed
fixes after rebase
1 parent 7e89a28 commit 7fce8c1

File tree

1 file changed

+3
-3
lines changed

1 file changed

+3
-3
lines changed

core/history.go

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -109,14 +109,14 @@ func (s *deprecatedStateHistory) CompiledClassHashV2(
109109
return s.state.CompiledClassHashV2(classHash)
110110
}
111111

112-
func (s *stateSnapshot) ClassTrie() (CommonTrie, error) {
112+
func (s *deprecatedStateHistory) ClassTrie() (CommonTrie, error) {
113113
return nil, ErrHistoricalTrieNotSupported
114114
}
115115

116-
func (s *stateSnapshot) ContractTrie() (CommonTrie, error) {
116+
func (s *deprecatedStateHistory) ContractTrie() (CommonTrie, error) {
117117
return nil, ErrHistoricalTrieNotSupported
118118
}
119119

120-
func (s *stateSnapshot) ContractStorageTrie(addr *felt.Felt) (CommonTrie, error) {
120+
func (s *deprecatedStateHistory) ContractStorageTrie(addr *felt.Felt) (CommonTrie, error) {
121121
return nil, ErrHistoricalTrieNotSupported
122122
}

0 commit comments

Comments
 (0)