Skip to content

Commit 4336502

Browse files
authored
Merge pull request #86 from raiden-network/remove-settings-event
Remove SettingsChanged event
2 parents 2619cf4 + a4fdd67 commit 4336502

File tree

2 files changed

+0
-8
lines changed

2 files changed

+0
-8
lines changed

contracts/auction.sol

Lines changed: 0 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -96,11 +96,6 @@ contract DutchAuction {
9696
uint32 indexed _price_exponent
9797
);
9898
event Setup();
99-
event SettingsChanged(
100-
uint indexed _price_start,
101-
uint indexed _price_constant,
102-
uint32 indexed _price_exponent
103-
);
10499
event AuctionStarted(uint indexed _start_time, uint indexed _block_number);
105100
event BidSubmission(
106101
address indexed _sender,
@@ -179,7 +174,6 @@ contract DutchAuction {
179174
price_start = _price_start;
180175
price_constant = _price_constant;
181176
price_exponent = _price_exponent;
182-
SettingsChanged(price_start, price_constant, price_exponent);
183177
}
184178

185179
/// @notice Start the auction.

tests/fixtures.py

Lines changed: 0 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -134,7 +134,6 @@ def auction_contract(
134134
if print_the_logs:
135135
print_logs(auction_contract, 'Deployed', auction_contract_type)
136136
print_logs(auction_contract, 'Setup', auction_contract_type)
137-
print_logs(auction_contract, 'SettingsChanged', auction_contract_type)
138137
print_logs(auction_contract, 'AuctionStarted', auction_contract_type)
139138
print_logs(auction_contract, 'BidSubmission', auction_contract_type)
140139
print_logs(auction_contract, 'AuctionEnded', auction_contract_type)
@@ -160,7 +159,6 @@ def auction_contract_fast_decline(
160159
if print_the_logs:
161160
print_logs(auction_contract, 'Deployed', auction_contract_type)
162161
print_logs(auction_contract, 'Setup', auction_contract_type)
163-
print_logs(auction_contract, 'SettingsChanged', auction_contract_type)
164162
print_logs(auction_contract, 'AuctionStarted', auction_contract_type)
165163
print_logs(auction_contract, 'BidSubmission', auction_contract_type)
166164
print_logs(auction_contract, 'AuctionEnded', auction_contract_type)

0 commit comments

Comments
 (0)