Skip to content

Commit

Permalink
change or to &&
Browse files Browse the repository at this point in the history
  • Loading branch information
ArnaudBger committed Oct 30, 2024
1 parent 73c24c3 commit 0ec3982
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion evm-events-calls/state.go
Original file line number Diff line number Diff line change
Expand Up @@ -343,7 +343,7 @@ func (d DynamicContract) FactoryInitialBlock() uint64 {
return *d.parentContract.InitialBlock
}
func (d DynamicContract) GenerateStoreQuery() string {
return fmt.Sprintf("evt_addr:%s || evt_sig:%s", d.parentContract.Address, "0x"+d.parentContract.FactoryCreationEvent)
return fmt.Sprintf("evt_addr:%s && evt_sig:%s", d.parentContract.Address, "0x"+d.parentContract.FactoryCreationEvent)
}
func (d DynamicContract) ParentContract() *Contract { return d.parentContract }
func (d DynamicContract) Identifier() string { return d.Name }
Expand Down

0 comments on commit 0ec3982

Please sign in to comment.