File tree Expand file tree Collapse file tree 2 files changed +1
-3
lines changed
Expand file tree Collapse file tree 2 files changed +1
-3
lines changed Original file line number Diff line number Diff line change @@ -154,10 +154,9 @@ type Dispute @entity {
154154 currentRuling : BigInt !
155155 tied : Boolean !
156156 overridden : Boolean !
157- periodDeadline : BigInt ! # uint256j
157+ periodDeadline : BigInt !
158158 periodNotificationIndex : BigInt !
159159 lastPeriodChangeTs : BigInt !
160- lastPeriodChangeBlock : BigInt !
161160 lastPeriodChangeBlockNumber : BigInt !
162161 rounds : [Round ! ]! @derivedFrom (field : " dispute" )
163162 currentRound : Round !
Original file line number Diff line number Diff line change @@ -18,7 +18,6 @@ export function createDisputeFromEvent(event: DisputeCreation): void {
1818 dispute . tied = true ;
1919 dispute . overridden = false ;
2020 dispute . lastPeriodChangeTs = event . block . timestamp ;
21- dispute . lastPeriodChangeBlock = event . block . timestamp ;
2221 dispute . lastPeriodChangeBlockNumber = event . block . number ;
2322 let counter = PeriodIndexCounter . load ( "evidence" ) ;
2423 if ( ! counter ) {
You can’t perform that action at this time.
0 commit comments