Skip to content

Commit

Permalink
cosmetic
Browse files Browse the repository at this point in the history
  • Loading branch information
madMAx43v3r committed Nov 1, 2024
1 parent 0920b91 commit 278dd4e
Showing 1 changed file with 1 addition and 3 deletions.
4 changes: 1 addition & 3 deletions src/contract/smart_wallet.js
Original file line number Diff line number Diff line change
Expand Up @@ -37,8 +37,7 @@ function add_plan(name, amount, currency, target, memo, interval, start) public
if(start == null) {
start = this.height;
}
const plan = {
name: name,
plans[name] = {
amount: amount,
currency: bech32(currency),
target: bech32(target),
Expand All @@ -47,7 +46,6 @@ function add_plan(name, amount, currency, target, memo, interval, start) public
next_pay: start,
active: true
};
plans[name] = plan;
}

function cancel_plan(name) public
Expand Down

0 comments on commit 278dd4e

Please sign in to comment.