Skip to content

Commit 7e8ec03

Browse files
committed
added full qualified name for NetApi
1 parent 8081896 commit 7e8ec03

File tree

1 file changed

+6
-6
lines changed

1 file changed

+6
-6
lines changed

Tools/Substrate.DotNet/Service/Integration/ExtrinsicInfoBuilder.cs

Lines changed: 6 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -122,28 +122,28 @@ internal void Update(TransactionEventInfo transactionEventInfo)
122122
123123
switch (TransactionEvent)
124124
{{
125-
case NetApi.Model.Rpc.TransactionEvent.Validated:
125+
case Substrate.NetApi.Model.Rpc.TransactionEvent.Validated:
126126
IsReady = true;
127127
break;
128128
129-
case NetApi.Model.Rpc.TransactionEvent.BestChainBlockIncluded:
129+
case Substrate.NetApi.Model.Rpc.TransactionEvent.BestChainBlockIncluded:
130130
IsInBlock = true;
131131
break;
132132
133-
case NetApi.Model.Rpc.TransactionEvent.Finalized:
133+
case Substrate.NetApi.Model.Rpc.TransactionEvent.Finalized:
134134
IsSuccess = true;
135135
IsCompleted = true;
136136
break;
137137
138-
case NetApi.Model.Rpc.TransactionEvent.Error:
138+
case Substrate.NetApi.Model.Rpc.TransactionEvent.Error:
139139
IsCompleted = true;
140140
break;
141141
142-
case NetApi.Model.Rpc.TransactionEvent.Invalid:
142+
case Substrate.NetApi.Model.Rpc.TransactionEvent.Invalid:
143143
IsCompleted = true;
144144
break;
145145
146-
case NetApi.Model.Rpc.TransactionEvent.Dropped:
146+
case Substrate.NetApi.Model.Rpc.TransactionEvent.Dropped:
147147
IsCompleted = true;
148148
break;
149149

0 commit comments

Comments
 (0)