Skip to content

Commit

Permalink
Fix linting
Browse files Browse the repository at this point in the history
  • Loading branch information
mvandeberg committed Aug 14, 2024
1 parent 301b6ee commit 10490ca
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion contracts/koin_wrapper/assembly/KoinWrapper.ts
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@
import { kcs4, System, Token } from "@koinos/sdk-as";

export class Koin {
_koinToken: Token = new Token(System.getContractAddress('koin'))
_koinToken: Token = new Token(System.getContractAddress('koin'));

name(): kcs4.name_result {
return new kcs4.name_result(this._koinToken.name());
Expand Down
2 changes: 1 addition & 1 deletion contracts/mock_smart_wallet/assembly/MockSmartWallet.ts
Original file line number Diff line number Diff line change
Expand Up @@ -61,7 +61,7 @@ export class MockSmartWallet {

// Default to checking signature
const trxId = System.getTransactionField("id")!.bytes_value;
const sigBytes = System.getTransactionField("signatures")!.message_value!.value!
const sigBytes = System.getTransactionField("signatures")!.message_value!.value!;
const signatures = Protobuf.decode< value.list_type >( sigBytes, value.list_type.decode );

for (let i = 0; i < signatures.values.length; i++) {
Expand Down

0 comments on commit 10490ca

Please sign in to comment.