File tree 1 file changed +2
-2
lines changed 1 file changed +2
-2
lines changed Original file line number Diff line number Diff line change @@ -38,7 +38,7 @@ context can be created by using the following code snippet:
38
38
```
39
39
var apiContext = ApiContext.Create(ApiEnvironmentType.SANDBOX, API_KEY, DEVICE_DESCRIPTION);
40
40
apiContext.Save();
41
- BunqContext.LoadApiContext(apiContext)
41
+ BunqContext.LoadApiContext(apiContext);
42
42
```
43
43
44
44
** Please note:** initializing your application is a heavy task, therefore, all calls in the example above except for
@@ -48,7 +48,7 @@ After saving the context, you can restore it at any time:
48
48
49
49
```
50
50
var apiContext = ApiContext.Restore(API_CONTEXT_FILE_PATH);
51
- BunqContext.LoadApiContext(apiContext)
51
+ BunqContext.LoadApiContext(apiContext);
52
52
```
53
53
54
54
** Tip:** both saving and restoring the context can be done without any arguments. In this case the context will be saved
You can’t perform that action at this time.
0 commit comments