Add deposit/withdraw events to EVM module (#5440)

* Add deposit/withdraw events

* Remove balances trait
This commit is contained in:
Drew Stone
2020-03-31 12:16:41 -06:00
committed by GitHub
parent 2008d3601a
commit 9789054fb8
2 changed files with 13 additions and 5 deletions
+1 -1
View File
@@ -172,7 +172,7 @@ impl<'vicinity, T: Trait> ApplyBackend for Backend<'vicinity, T> {
}
for log in logs {
Module::<T>::deposit_event(Event::Log(Log {
Module::<T>::deposit_event(Event::<T>::Log(Log {
address: log.address,
topics: log.topics,
data: log.data,