Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

chore: fix some typos in comment #564

Open
wants to merge 1 commit into
base: production
Choose a base branch
from
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Original file line number Diff line number Diff line change
Expand Up @@ -73,7 +73,7 @@ <h1>Import wallet</h1>
[(ngModel)]="password" [placeholder]="'Password (required)'" readonly="true" (click)="clickPassword($event)"
(blur)="blurPassword($event)">
<span class="label">Provide the public key hash to verify your email and password are correct</span>
<input name="none" type="text" class="text" [(ngModel)]="pkh" [placeholder]="'tz1... (recomended)'">
<input name="none" type="text" class="text" [(ngModel)]="pkh" [placeholder]="'tz1... (recommended)'">
</form>
</ng-container>
<button class="button next" (click)="retrieve()">Import</button>
Expand Down
2 changes: 1 addition & 1 deletion src/app/services/error-handling/error-handling.service.ts
Original file line number Diff line number Diff line change
Expand Up @@ -16,7 +16,7 @@ const customErrors: Record<string, CustomError> = {
msg: 'Error while applying operation: Please try again.'
},
'proto.alpha.contract.balance_too_low': {
msg: 'Not enoght tez (XTZ) to perform this operation'
msg: 'Not enough tez (XTZ) to perform this operation'
}
};

Expand Down
4 changes: 2 additions & 2 deletions src/app/services/error-handling/rpc-errors.ts
Original file line number Diff line number Diff line change
Expand Up @@ -48,11 +48,11 @@ export const rpcErrors: Record<string, RPCError> =
"category": "temporary"
},
"proto.alpha.Dal_slot_repr.invalid_proof_deserialization": {
"msg": "Error occured during dal proof deserialization",
"msg": "Error occurred during dal proof deserialization",
"category": "temporary"
},
"proto.alpha.Dal_slot_repr.invalid_proof_serialization": {
"msg": "Error occured during dal proof serialization",
"msg": "Error occurred during dal proof serialization",
"category": "temporary"
},
"proto.alpha.Dissecting_during_final_move": {
Expand Down
2 changes: 1 addition & 1 deletion src/app/services/operation/operation.service.spec.ts
Original file line number Diff line number Diff line change
Expand Up @@ -290,7 +290,7 @@ describe('[ OperationService ]', () => {
* State(s):
* 1: Parameter 'to' is empty. It doesn't set the fop.contents[0].delegate property? Does this nullify delegate?
* 2: Parameter to is valid & manager.key is undefined. Appends a reveal operation which changes fop object expected.
* 3: Parameter to is valie & manager.key is defined. "Passes" returns operation(fop,keys)
* 3: Parameter to is valid & manager.key is defined. "Passes" returns operation(fop,keys)
* Testing:
* - Perform for each state(3)
* - CALLTHROUGH EXPECT return of Observable<any> object if we are not mocking/stubbing operation.
Expand Down