Skip to content

Commit

Permalink
test: remove deprecated param
Browse files Browse the repository at this point in the history
  • Loading branch information
nick-bisonai committed Dec 7, 2024
1 parent 789b972 commit 13f621e
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions node/pkg/chain/tests/chain_test.go
Original file line number Diff line number Diff line change
Expand Up @@ -749,12 +749,12 @@ func TestSignerRenew(t *testing.T) {
addOracleFunctionSignature := "addOracle(address _oracle) external returns (uint256)"
removeOracleFunctionSignature := "function removeOracle(address _oracle) external"

err = chainHelperForCleanup.SubmitDelegatedFallbackDirect(ctx, contractAddr, addOracleFunctionSignature, maxTxSubmissionRetries, common.HexToAddress(oldSignerAddr))
err = chainHelperForCleanup.SubmitDelegatedFallbackDirect(ctx, contractAddr, addOracleFunctionSignature, common.HexToAddress(oldSignerAddr))
if err != nil {
t.Errorf("Unexpected error: %v", err)
}

err = chainHelperForCleanup.SubmitDelegatedFallbackDirect(ctx, contractAddr, removeOracleFunctionSignature, maxTxSubmissionRetries, common.HexToAddress(newSignerAddr))
err = chainHelperForCleanup.SubmitDelegatedFallbackDirect(ctx, contractAddr, removeOracleFunctionSignature, common.HexToAddress(newSignerAddr))
if err != nil {
t.Errorf("Unexpected error: %v", err)
}
Expand Down

0 comments on commit 13f621e

Please sign in to comment.