Skip to content

Commit

Permalink
Fixed Conflicts with master branch (#618)
Browse files Browse the repository at this point in the history
* Validator Api calls made with js sdk, Fixed config types and test

* add memo

* memo to tables

* fixed all errors with updated sdk

* included comment for payment handler

* add memo (#615)

* add memo

* memo to tables

* IP update

Co-authored-by: Bucky <buckyroberts@gmail.com>

* 1.0.0-alpha.45

Co-authored-by: Justin Kim <justinkim943@gmail.com>
Co-authored-by: Bucky <buckyroberts@gmail.com>
  • Loading branch information
3 people authored Apr 13, 2021
1 parent f2cd300 commit 29e441e
Show file tree
Hide file tree
Showing 3 changed files with 4 additions and 2 deletions.
2 changes: 1 addition & 1 deletion package.json
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
{
"name": "thenewboston",
"productName": "TNB Account Manager",
"version": "1.0.0-alpha.44",
"version": "1.0.0-alpha.45",
"description": "thenewboston Account Manager Electron Application",
"main": "./bundle/main/index.js",
"scripts": {
Expand Down
2 changes: 1 addition & 1 deletion src/renderer/containers/Connect/index.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -16,7 +16,7 @@ import {displayErrorToast, displayToast} from '@renderer/utils/toast';
import './Connect.scss';

const initialValues = {
ipAddress: '143.110.137.54',
ipAddress: '54.177.121.3',
nickname: '',
port: '80',
protocol: 'http' as ProtocolType,
Expand Down
2 changes: 2 additions & 0 deletions src/renderer/utils/blocks.ts
Original file line number Diff line number Diff line change
Expand Up @@ -18,6 +18,8 @@ export const fetchAccountBalanceLock = async (
throw new Error('Error: fetchAccountBalanceLock');
};

export const sanitizeMemo = (memo: string): string => memo.trim();

export const sendBlock = async (
activeBankConfig: BankConfig,
senderSigningKey: string,
Expand Down

0 comments on commit 29e441e

Please sign in to comment.