Skip to content

Commit

Permalink
Fix Koin approve_event
Browse files Browse the repository at this point in the history
  • Loading branch information
mvandeberg committed Aug 15, 2024
1 parent 43463c7 commit b65418b
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions contracts/koin/assembly/Koin.ts
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@
// Julian Gonzalez ([email protected])
// Koinos Group, Inc. ([email protected])

import { Arrays, authority, chain, error, kcs4, Protobuf, Storage, System, system_calls, u128 } from "@koinos/sdk-as";
import { Arrays, authority, chain, error, kcs4, Storage, System, system_calls, u128 } from "@koinos/sdk-as";
import { koin } from "./proto/koin";

const SUPPLY_SPACE_ID = 0;
Expand Down Expand Up @@ -262,7 +262,7 @@ export class Koin {

System.event(
"token.approve_event",
Protobuf.encode(args, kcs4.approve_arguments.encode),
System.getArguments().args,
[args.owner, args.spender]
);

Expand Down

0 comments on commit b65418b

Please sign in to comment.