File tree 2 files changed +8
-2
lines changed
2 files changed +8
-2
lines changed Original file line number Diff line number Diff line change 24
24
work correctly both with client-side routing and a non-root public URL.
25
25
Learn how to configure a non-root public URL by running `npm run build`.
26
26
-->
27
- < title > cøsmwasm devtøøls </ title >
27
+ < title > cosmwasm devtools </ title >
28
28
</ head >
29
29
< body >
30
30
< noscript > You need to enable JavaScript to run this app.</ noscript >
Original file line number Diff line number Diff line change @@ -221,7 +221,6 @@ export const sendCoins = createAsyncThunk(
221
221
const config = customConfig ?? state . connection . config ;
222
222
const senderAccount = state . accounts . accountList [ sender ] ;
223
223
224
- console . log ( sender , senderAccount ) ;
225
224
if ( ! sender ) {
226
225
throw new Error ( "No account selected" ) ;
227
226
}
@@ -238,6 +237,13 @@ export const sendCoins = createAsyncThunk(
238
237
} ,
239
238
] ;
240
239
240
+ dispatch (
241
+ pushMessage ( {
242
+ status : "neutral" ,
243
+ message : "Sending coins..." ,
244
+ } )
245
+ ) ;
246
+
241
247
const { code } = await client . sendTokens (
242
248
sender ,
243
249
recipient ,
You can’t perform that action at this time.
0 commit comments