Skip to content

Commit

Permalink
Merge pull request #4775 from filecoin-project/fix/pond
Browse files Browse the repository at this point in the history
Make pond work again
  • Loading branch information
magik6k authored Nov 9, 2020
2 parents f225b7b + 290414e commit 82e88a3
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion chain/wallet/multi.go
Original file line number Diff line number Diff line change
Expand Up @@ -90,7 +90,7 @@ func (m MultiWallet) WalletHas(ctx context.Context, address address.Address) (bo
}

func (m MultiWallet) WalletList(ctx context.Context) ([]address.Address, error) {
var out []address.Address
out := make([]address.Address, 0)
seen := map[address.Address]struct{}{}

ws := nonNil(m.Remote, m.Ledger, m.Local)
Expand Down
2 changes: 1 addition & 1 deletion lotuspond/front/src/chain/send.js
Original file line number Diff line number Diff line change
Expand Up @@ -30,7 +30,7 @@ async function pushMessage(client, from, inmsg) {

console.log(inmsg)

await client.call('Filecoin.MpoolPushMessage', [inmsg])
await client.call('Filecoin.MpoolPushMessage', [inmsg, null])
}

export default pushMessage

0 comments on commit 82e88a3

Please sign in to comment.