@@ -202,7 +202,7 @@ func (sdb *builder) buildStateDiffWithIntermediateStateNodes(args types2.StateRo
202202 // a map of their leafkey to all the accounts that were touched and exist at A
203203 diffAccountsAtA , err := sdb .deletedOrUpdatedState (
204204 oldTrie .NodeIterator ([]byte {}), newTrie .NodeIterator ([]byte {}),
205- diffAccountsAtB , diffPathsAtB , params .WatchedAddressesLeafKeys ,
205+ diffAccountsAtB , diffPathsAtB , params .watchedAddressesLeafKeys ,
206206 params .IntermediateStorageNodes , output )
207207 if err != nil {
208208 return fmt .Errorf ("error collecting deletedOrUpdatedNodes: %v" , err )
@@ -248,7 +248,7 @@ func (sdb *builder) buildStateDiffWithoutIntermediateStateNodes(args types2.Stat
248248 // and a slice of all the paths for the nodes in both of the above sets
249249 diffAccountsAtB , diffPathsAtB , err := sdb .createdAndUpdatedState (
250250 oldTrie .NodeIterator ([]byte {}), newTrie .NodeIterator ([]byte {}),
251- params .WatchedAddressesLeafKeys )
251+ params .watchedAddressesLeafKeys )
252252 if err != nil {
253253 return fmt .Errorf ("error collecting createdAndUpdatedNodes: %v" , err )
254254 }
@@ -257,7 +257,7 @@ func (sdb *builder) buildStateDiffWithoutIntermediateStateNodes(args types2.Stat
257257 // a map of their leafkey to all the accounts that were touched and exist at A
258258 diffAccountsAtA , err := sdb .deletedOrUpdatedState (
259259 oldTrie .NodeIterator ([]byte {}), newTrie .NodeIterator ([]byte {}),
260- diffAccountsAtB , diffPathsAtB , params .WatchedAddressesLeafKeys ,
260+ diffAccountsAtB , diffPathsAtB , params .watchedAddressesLeafKeys ,
261261 params .IntermediateStorageNodes , output )
262262 if err != nil {
263263 return fmt .Errorf ("error collecting deletedOrUpdatedNodes: %v" , err )
0 commit comments